diff options
author | Emilio Cobos Álvarez <ecoal95@gmail.com> | 2016-10-07 12:22:06 +0200 |
---|---|---|
committer | Emilio Cobos Álvarez <ecoal95@gmail.com> | 2016-11-14 21:24:19 +0100 |
commit | 73917cce83d2225b51b29c374d861d71ec69435f (patch) | |
tree | ac8c6b562ca3e88a7d853ddcab88d114362559e7 /components/style/lib.rs | |
parent | b7eb36fa84e6c6c77727ea2cd02c57f6750dc7af (diff) | |
download | servo-73917cce83d2225b51b29c374d861d71ec69435f.tar.gz servo-73917cce83d2225b51b29c374d861d71ec69435f.zip |
style: Use rayon instead of our custom work queue.
Diffstat (limited to 'components/style/lib.rs')
-rw-r--r-- | components/style/lib.rs | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/components/style/lib.rs b/components/style/lib.rs index e7c764ba87c..64fe606d9c1 100644 --- a/components/style/lib.rs +++ b/components/style/lib.rs @@ -49,7 +49,6 @@ extern crate cfg_if; extern crate core; #[macro_use] extern crate cssparser; -extern crate deque; extern crate encoding; extern crate euclid; extern crate fnv; @@ -60,7 +59,6 @@ extern crate heapsize; #[allow(unused_extern_crates)] #[macro_use] extern crate lazy_static; -#[cfg(feature = "gecko")] extern crate libc; #[macro_use] extern crate log; #[allow(unused_extern_crates)] @@ -74,7 +72,7 @@ extern crate ordered_float; extern crate owning_ref; extern crate parking_lot; extern crate quickersort; -extern crate rand; +extern crate rayon; extern crate rustc_serialize; extern crate selectors; #[cfg(feature = "servo")] @@ -131,7 +129,6 @@ pub mod traversal; #[allow(non_camel_case_types)] pub mod values; pub mod viewport; -pub mod workqueue; use std::fmt; use std::sync::Arc; |