diff options
author | Anthony Ramine <n.oxyde@gmail.com> | 2016-07-05 10:34:43 +0200 |
---|---|---|
committer | Anthony Ramine <n.oxyde@gmail.com> | 2016-07-05 10:43:54 +0200 |
commit | 8ecb5962f3c2d2ec1cc031ef1e893ab81142c730 (patch) | |
tree | 57344a64ccc5e1f966bb774cea5603623b8dc9f5 /components/util/lib.rs | |
parent | 744b94346aa586d54af7ff13bd2bf94faef41e84 (diff) | |
download | servo-8ecb5962f3c2d2ec1cc031ef1e893ab81142c730.tar.gz servo-8ecb5962f3c2d2ec1cc031ef1e893ab81142c730.zip |
Move util::str to style
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r-- | components/util/lib.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs index 3f120cb06bf..15fdaa5f332 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -21,7 +21,6 @@ extern crate getopts; #[allow(unused_extern_crates)] #[macro_use] extern crate lazy_static; #[macro_use] extern crate log; extern crate num_cpus; -extern crate num_traits; extern crate rand; extern crate rustc_serialize; #[cfg(feature = "servo")] extern crate serde; @@ -39,7 +38,6 @@ pub mod geometry; #[cfg(feature = "servo")] pub mod panicking; pub mod prefs; pub mod resource_files; -pub mod str; pub mod thread; pub mod thread_state; |