diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-07-05 02:04:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-05 02:04:42 -0700 |
commit | bb916bb38bc4298477bfc8134b94dc906054bce1 (patch) | |
tree | 5f592efcb4b1db3836f87e0af31f81aada26912b /components/util/lib.rs | |
parent | 181261004d3b217605cb2d8fbdc00ad0785532ba (diff) | |
parent | 8ecb5962f3c2d2ec1cc031ef1e893ab81142c730 (diff) | |
download | servo-bb916bb38bc4298477bfc8134b94dc906054bce1.tar.gz servo-bb916bb38bc4298477bfc8134b94dc906054bce1.zip |
Auto merge of #12256 - nox:die-util-die, r=Ms2ger
Move some stuff from util to style
<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="35" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12256)
<!-- Reviewable:end -->
Diffstat (limited to 'components/util/lib.rs')
-rw-r--r-- | components/util/lib.rs | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/components/util/lib.rs b/components/util/lib.rs index fed8c9b0178..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,10 +38,8 @@ 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; -pub mod tid; #[cfg(feature = "servo")] #[allow(unsafe_code)] |