diff options
| author | Charles Lew <crlf0710@gmail.com> | 2022-11-05 13:09:13 +0800 |
|---|---|---|
| committer | Manish Goregaokar <manishsmail@gmail.com> | 2022-11-18 14:46:35 -0800 |
| commit | 42d3bda08c0c65c455d8349031f42f074ad42b28 (patch) | |
| tree | 45d18cfe6d24fed596c15bad2f996adbc6bfdac2 /src | |
| parent | 70fe5f08fffd16dc20506f7d140e47b074f77964 (diff) | |
Add `rustc_baked_icu_data` crate.
Diffstat (limited to 'src')
| -rw-r--r-- | src/tools/tidy/src/deps.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tools/tidy/src/deps.rs b/src/tools/tidy/src/deps.rs index f1f5a194157..76d278667f5 100644 --- a/src/tools/tidy/src/deps.rs +++ b/src/tools/tidy/src/deps.rs @@ -133,6 +133,10 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[ "hashbrown", "hermit-abi", "humantime", + "icu_list", + "icu_locid", + "icu_provider", + "icu_provider_macros", "if_chain", "indexmap", "instant", @@ -145,6 +149,7 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[ "libc", "libloading", "libz-sys", + "litemap", "lock_api", "log", "matchers", @@ -253,9 +258,16 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[ "winapi-i686-pc-windows-gnu", "winapi-util", "winapi-x86_64-pc-windows-gnu", + "writeable", // this is a false-positive: it's only used by rustfmt, but because it's enabled through a // feature, tidy thinks it's used by rustc as well. "yansi-term", + "yoke", + "yoke-derive", + "zerofrom", + "zerofrom-derive", + "zerovec", + "zerovec-derive", ]; const PERMITTED_CRANELIFT_DEPENDENCIES: &[&str] = &[ |
