aboutsummaryrefslogtreecommitdiffstats
path: root/components/util/lib.rs
diff options
context:
space:
mode:
authorbors-servo <lbergstrom+bors@mozilla.com>2016-07-08 07:46:00 -0700
committerGitHub <noreply@github.com>2016-07-08 07:46:00 -0700
commitd475a277eebaa7d91d1b070b169e205b4c533c4f (patch)
tree859dad73b11839931d5995645479e7a18482b71b /components/util/lib.rs
parent1fabfee27e16a237d8a6a6b2e4aaad5e67311104 (diff)
parente7f9959ad96c51afdd6b5e74e2285f67b1bda228 (diff)
downloadservo-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.rs2
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;