diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-05-22 13:25:07 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-05-24 10:54:57 +0200 |
commit | cdc7bca944b6ffebc59169d42331fffbee7f71ee (patch) | |
tree | b727287bb85a82b9ff16c1eac1737d09749be2f4 /components/util/lib.rs | |
parent | 7b467ee52d59d1d2f078948acc9e4d188eac7338 (diff) | |
download | servo-cdc7bca944b6ffebc59169d42331fffbee7f71ee.tar.gz servo-cdc7bca944b6ffebc59169d42331fffbee7f71ee.zip |
Move DOMString back to script
This entirely removes the 'non-geckolib' feature of the util crate.
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r-- | components/util/lib.rs | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs index 53391a50f84..9039e99c7b7 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -6,7 +6,6 @@ #![feature(core_intrinsics)] #![feature(custom_derive)] #![feature(fnbox)] -#![feature(optin_builtin_traits)] #![feature(plugin)] #![feature(panic_handler)] #![feature(reflect_marker)] @@ -26,8 +25,6 @@ extern crate euclid; extern crate getopts; extern crate heapsize; extern crate ipc_channel; -#[cfg(feature = "non-geckolib")] -extern crate js; #[allow(unused_extern_crates)] #[macro_use] extern crate lazy_static; @@ -40,7 +37,6 @@ extern crate rand; extern crate rustc_serialize; extern crate serde; extern crate smallvec; -extern crate string_cache; extern crate url; use std::sync::Arc; @@ -52,9 +48,6 @@ pub mod geometry; #[allow(unsafe_code)] pub mod ipc; pub mod linked_list; -#[cfg(feature = "non-geckolib")] -#[allow(unsafe_code)] -pub mod non_geckolib; #[allow(unsafe_code)] pub mod opts; pub mod panicking; |