diff options
| author | Andy Russell <arussell123@gmail.com> | 2019-05-09 12:03:13 -0400 |
|---|---|---|
| committer | Andy Russell <arussell123@gmail.com> | 2019-05-09 12:03:13 -0400 |
| commit | b2f71fb540faa4218de506c4d82bbcf237ea78d6 (patch) | |
| tree | f400b7223dc55e118897880e1063679010245b89 /src/bootstrap/cache.rs | |
| parent | e6305805a7d36b23c79f8308774778ba6481ce47 (diff) | |
| download | rust-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.rs | 2 |
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>); |
