aboutsummaryrefslogtreecommitdiffstats
path: root/components/style/lib.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-07-04 12:57:00 -0700
committerGitHub <noreply@github.com>2016-07-04 12:57:00 -0700
commit3b0dadda529a5ba45a8a0dc394187f43a66e7c1f (patch)
tree051be23bf32b15dd64e65658052ccb8d962834bb /components/style/lib.rs
parent80cb0cf8214fd52d2884724614c40cb278ee7575 (diff)
parentbf34fdde1fbee49bf518ef0dcbb40447fc35fe0f (diff)
downloadservo-3b0dadda529a5ba45a8a0dc394187f43a66e7c1f.tar.gz
servo-3b0dadda529a5ba45a8a0dc394187f43a66e7c1f.zip
Auto merge of #12224 - nox:die-util-die, r=Ms2ger
Remove some stuff from util <!-- Reviewable:start --> This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12224) <!-- Reviewable:end -->
Diffstat (limited to 'components/style/lib.rs')
-rw-r--r--components/style/lib.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/components/style/lib.rs b/components/style/lib.rs
index ae1e8c84d7c..325c89fdd46 100644
--- a/components/style/lib.rs
+++ b/components/style/lib.rs
@@ -40,6 +40,7 @@ extern crate bitflags;
extern crate core;
#[macro_use]
extern crate cssparser;
+extern crate deque;
extern crate encoding;
extern crate euclid;
extern crate fnv;
@@ -49,12 +50,14 @@ extern crate gecko_bindings;
#[allow(unused_extern_crates)]
#[macro_use]
extern crate lazy_static;
+extern crate libc;
#[macro_use]
extern crate log;
#[allow(unused_extern_crates)]
#[macro_use]
extern crate matches;
extern crate num_traits;
+extern crate rand;
extern crate rustc_serialize;
extern crate selectors;
#[cfg(feature = "servo")] extern crate serde;
@@ -88,12 +91,14 @@ pub mod selector_impl;
pub mod selector_matching;
pub mod sequential;
pub mod servo;
+pub mod sink;
pub mod stylesheets;
pub mod traversal;
#[macro_use]
#[allow(non_camel_case_types)]
pub mod values;
pub mod viewport;
+pub mod workqueue;
/// The CSS properties supported by the style system.
// Generated from the properties.mako.rs template by build.rs