about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMazdak Farrokhzad <twingoow@gmail.com>2020-03-29 17:29:12 +0200
committerMazdak Farrokhzad <twingoow@gmail.com>2020-03-30 07:19:55 +0200
commit39f06255d26aaa394d998feeab7074f18e1c4a0b (patch)
treeee25cf928529118887ddb735510e0c04f5c3118a
parent1ccb0b4a020cac07a9772d0da722869096a46cef (diff)
downloadrust-39f06255d26aaa394d998feeab7074f18e1c4a0b.tar.gz
rust-39f06255d26aaa394d998feeab7074f18e1c4a0b.zip
rustc -> rustc_middle part 4 -- pacify tidy
-rw-r--r--src/tools/tidy/src/deps.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/tidy/src/deps.rs b/src/tools/tidy/src/deps.rs
index 1ffc415fb24..a221184fab0 100644
--- a/src/tools/tidy/src/deps.rs
+++ b/src/tools/tidy/src/deps.rs
@@ -57,7 +57,7 @@ const EXCEPTIONS: &[(&str, &str)] = &[
 const RUNTIME_CRATES: &[&str] = &["std", "core", "alloc", "test", "panic_abort", "panic_unwind"];
 
 /// Which crates to check against the whitelist?
-const WHITELIST_CRATES: &[&str] = &["rustc", "rustc_codegen_llvm"];
+const WHITELIST_CRATES: &[&str] = &["rustc_middle", "rustc_codegen_llvm"];
 
 /// Whitelist of crates rustc is allowed to depend on. Avoid adding to the list if possible.
 ///