diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-07-08 07:46:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-08 07:46:00 -0700 |
commit | d475a277eebaa7d91d1b070b169e205b4c533c4f (patch) | |
tree | 859dad73b11839931d5995645479e7a18482b71b /components/util/lib.rs | |
parent | 1fabfee27e16a237d8a6a6b2e4aaad5e67311104 (diff) | |
parent | e7f9959ad96c51afdd6b5e74e2285f67b1bda228 (diff) | |
download | servo-d475a277eebaa7d91d1b070b169e205b4c533c4f.tar.gz servo-d475a277eebaa7d91d1b070b169e205b4c533c4f.zip |
Auto merge of #12311 - Ms2ger:cache, r=nox
Move the cache module out of util.
<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/12311)
<!-- Reviewable:end -->
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 6ffa4a4a2b5..bcad9ea3705 100644 --- a/components/util/lib.rs +++ b/components/util/lib.rs @@ -20,7 +20,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 rand; extern crate rustc_serialize; #[cfg(feature = "servo")] extern crate serde; extern crate url; @@ -30,7 +29,6 @@ extern crate xdg; use std::sync::Arc; pub mod basedir; -pub mod cache; pub mod geometry; #[cfg(feature = "servo")] #[allow(unsafe_code)] pub mod ipc; #[allow(unsafe_code)] pub mod opts; |