about summary refs log tree commit diff
path: root/src/bootstrap/cache.rs
diff options
context:
space:
mode:
authorAndy Russell <arussell123@gmail.com>2019-05-09 12:03:13 -0400
committerAndy Russell <arussell123@gmail.com>2019-05-09 12:03:13 -0400
commitb2f71fb540faa4218de506c4d82bbcf237ea78d6 (patch)
treef400b7223dc55e118897880e1063679010245b89 /src/bootstrap/cache.rs
parente6305805a7d36b23c79f8308774778ba6481ce47 (diff)
downloadrust-b2f71fb540faa4218de506c4d82bbcf237ea78d6.tar.gz
rust-b2f71fb540faa4218de506c4d82bbcf237ea78d6.zip
remove unneeded `extern crate`s from build tools
Diffstat (limited to 'src/bootstrap/cache.rs')
-rw-r--r--src/bootstrap/cache.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/bootstrap/cache.rs b/src/bootstrap/cache.rs
index 239959682cb..f137a7b8cc2 100644
--- a/src/bootstrap/cache.rs
+++ b/src/bootstrap/cache.rs
@@ -13,6 +13,8 @@ use std::path::{Path, PathBuf};
 use std::sync::Mutex;
 use std::cmp::{PartialOrd, Ord, Ordering};
 
+use lazy_static::lazy_static;
+
 use crate::builder::Step;
 
 pub struct Interned<T>(usize, PhantomData<*const T>);