Implement OwningHandle in style.

I've also PR-ed this against upstream [1], but I don't want to block on that
in case it takes a while to be merged / published.

[1] https://github.com/Kimundi/owning-ref-rs/pull/15
This commit is contained in:
Bobby Holley 2016-10-13 16:44:53 -06:00
parent 3f31ffad2f
commit d73047584c
9 changed files with 134 additions and 9 deletions

View file

@ -73,6 +73,7 @@ extern crate num_integer;
extern crate num_traits;
#[cfg(feature = "gecko")] extern crate num_cpus;
extern crate ordered_float;
extern crate owning_ref;
extern crate parking_lot;
extern crate quickersort;
extern crate rand;
@ -112,6 +113,7 @@ pub mod keyframes;
pub mod logical_geometry;
pub mod matching;
pub mod media_queries;
pub mod owning_handle;
pub mod parallel;
pub mod parser;
pub mod refcell;