diff options
| author | Igor Matuszewski <xanewok@gmail.com> | 2021-07-21 20:37:50 +0200 |
|---|---|---|
| committer | Igor Matuszewski <xanewok@gmail.com> | 2021-07-21 20:37:50 +0200 |
| commit | bf12f340eef82b696979be911305e9e306c4f284 (patch) | |
| tree | 7f1316f3997afa0935bf114bcc5e81d15723121e | |
| parent | af53b0d9d411913c5517df76eeb53c702d0ccb13 (diff) | |
| download | rust-bf12f340eef82b696979be911305e9e306c4f284.tar.gz rust-bf12f340eef82b696979be911305e9e306c4f284.zip | |
Clean up now unused deps from the exceptions list
| -rw-r--r-- | src/tools/tidy/src/deps.rs | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/src/tools/tidy/src/deps.rs b/src/tools/tidy/src/deps.rs index 799d685ce5c..54d67ca3742 100644 --- a/src/tools/tidy/src/deps.rs +++ b/src/tools/tidy/src/deps.rs @@ -26,10 +26,8 @@ const LICENSES: &[&str] = &[ /// tooling. It is _crucial_ that no exception crates be dependencies /// of the Rust runtime (std/test). const EXCEPTIONS: &[(&str, &str)] = &[ - ("mdbook", "MPL-2.0"), // mdbook - ("openssl", "Apache-2.0"), // cargo, mdbook - ("fuchsia-zircon-sys", "BSD-3-Clause"), // rustdoc, rustc, cargo - ("fuchsia-zircon", "BSD-3-Clause"), // rustdoc, rustc, cargo (jobserver & tempdir) + ("mdbook", "MPL-2.0"), // mdbook + ("openssl", "Apache-2.0"), // cargo, mdbook ("colored", "MPL-2.0"), // rustfmt ("ordslice", "Apache-2.0"), // rls ("ryu", "Apache-2.0 OR BSL-1.0"), // rls/cargo/... (because of serde) @@ -115,8 +113,6 @@ const PERMITTED_DEPENDENCIES: &[&str] = &[ "fixedbitset", "flate2", "fortanix-sgx-abi", - "fuchsia-zircon", - "fuchsia-zircon-sys", "generic-array", "getopts", "getrandom", @@ -130,7 +126,6 @@ const PERMITTED_DEPENDENCIES: &[&str] = &[ "itertools", "itoa", "jobserver", - "kernel32-sys", "lazy_static", "libc", "libz-sys", @@ -222,7 +217,6 @@ const PERMITTED_DEPENDENCIES: &[&str] = &[ "version_check", "wasi", "winapi", - "winapi-build", "winapi-i686-pc-windows-gnu", "winapi-util", "winapi-x86_64-pc-windows-gnu", |
