diff options
author | Simon Sapin <simon.sapin@exyr.org> | 2018-11-20 13:23:16 +0100 |
---|---|---|
committer | Simon Sapin <simon.sapin@exyr.org> | 2018-11-20 13:23:16 +0100 |
commit | 4fcc2f7edb543afbcde71e3c7790b9958a24eb6c (patch) | |
tree | cdce91ab7e72ccc85ac828a94c7978c8f2de124e | |
parent | 1ac6f435c8637d01279b51fecb535a19b639aea5 (diff) | |
download | servo-4fcc2f7edb543afbcde71e3c7790b9958a24eb6c.tar.gz servo-4fcc2f7edb543afbcde71e3c7790b9958a24eb6c.zip |
Fix unused import warning in new Rust Nightly
-rw-r--r-- | components/script/lib.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/script/lib.rs b/components/script/lib.rs index 132115d9e4e..0a24b674bdd 100644 --- a/components/script/lib.rs +++ b/components/script/lib.rs @@ -28,8 +28,6 @@ extern crate deny_public_fields; #[macro_use] extern crate domobject_derive; #[macro_use] -extern crate enum_iterator; -#[macro_use] extern crate html5ever; #[macro_use] extern crate js; |