diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-01-13 21:16:35 +0530 |
---|---|---|
committer | bors-servo <lbergstrom+bors@mozilla.com> | 2016-01-13 21:16:35 +0530 |
commit | 0b5dda3e9c38f6cd4ec9b82f023bf3698addc65f (patch) | |
tree | f5557c46e45e9f7c6de82d77cb51205637da7a23 /components/script/lib.rs | |
parent | 0e6bca8e8efce40f99aca24475d5ba1dac317e2c (diff) | |
parent | 86d3c576f21e76b23db5bfcfe1a81794148a97dd (diff) | |
download | servo-0b5dda3e9c38f6cd4ec9b82f023bf3698addc65f.tar.gz servo-0b5dda3e9c38f6cd4ec9b82f023bf3698addc65f.zip |
Auto merge of #9275 - Ms2ger:extern-crate, r=larsbergstrom
Remove some unused extern crates.
<!-- Reviewable:start -->
[<img src="https://reviewable.io/review_button.png" height=40 alt="Review on Reviewable"/>](https://reviewable.io/reviews/servo/servo/9275)
<!-- Reviewable:end -->
Diffstat (limited to 'components/script/lib.rs')
-rw-r--r-- | components/script/lib.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 24483d3182f..0993d090dd5 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -20,7 +20,6 @@ #![feature(plugin)] #![feature(slice_patterns)] #![feature(str_utf16)] -#![feature(unicode)] #![deny(unsafe_code)] #![allow(non_snake_case)] @@ -60,7 +59,6 @@ extern crate profile_traits; extern crate rand; extern crate ref_slice; extern crate rustc_serialize; -extern crate rustc_unicode; extern crate script_traits; #[macro_use(state_pseudo_classes)] extern crate selectors; extern crate serde; @@ -68,7 +66,6 @@ extern crate smallvec; #[macro_use(atom, ns)] extern crate string_cache; #[macro_use] extern crate style; -extern crate style_traits; extern crate tendril; extern crate time; extern crate unicase; |