diff options
Diffstat (limited to 'components/style/lib.rs')
-rw-r--r-- | components/style/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/style/lib.rs b/components/style/lib.rs index 77927826523..cd1267d99f5 100644 --- a/components/style/lib.rs +++ b/components/style/lib.rs @@ -36,6 +36,8 @@ extern crate byteorder; #[macro_use] #[no_link] extern crate cfg_if; +#[cfg(feature = "servo")] +extern crate crossbeam_channel; #[macro_use] extern crate cssparser; #[macro_use] @@ -85,8 +87,6 @@ pub extern crate servo_arc; #[macro_use] extern crate servo_atoms; #[cfg(feature = "servo")] -extern crate servo_channel; -#[cfg(feature = "servo")] extern crate servo_config; #[cfg(feature = "servo")] extern crate servo_url; |