Skip to content

Commit 6180a3f

Browse files
committed
enable whitelist
1 parent 1fca9e0 commit 6180a3f

File tree

1 file changed

+23
-23
lines changed

1 file changed

+23
-23
lines changed

src/tools/tidy/src/deps.rs

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -56,29 +56,29 @@ static WHITELIST_CRATES: &'static [CrateVersion] = &[
5656

5757
/// Whitelist of crates rustc is allowed to depend on. Avoid adding to the list if possible.
5858
static WHITELIST: &'static [Crate] = &[
59-
// Crate("backtrace"),
60-
// Crate("backtrace-sys"),
61-
// Crate("bitflags"),
62-
// Crate("byteorder"),
63-
// Crate("cc"),
64-
// Crate("cfg-if"),
65-
// Crate("flate2"),
66-
// Crate("fuchsia-zircon"),
67-
// Crate("fuchsia-zircon-sys"),
68-
// Crate("jobserver"),
69-
// Crate("lazy_static"),
70-
// Crate("libc"),
71-
// Crate("log"),
72-
// Crate("miniz-sys"),
73-
// Crate("num_cpus"),
74-
// Crate("rand"),
75-
// Crate("rustc"),
76-
// Crate("rustc-demangle"),
77-
// Crate("rustc_trans"),
78-
// Crate("tempdir"),
79-
// Crate("winapi"),
80-
// Crate("winapi-i686-pc-windows-gnu"),
81-
// Crate("winapi-x86_64-pc-windows-gnu"),
59+
Crate("backtrace"),
60+
Crate("backtrace-sys"),
61+
Crate("bitflags"),
62+
Crate("byteorder"),
63+
Crate("cc"),
64+
Crate("cfg-if"),
65+
Crate("flate2"),
66+
Crate("fuchsia-zircon"),
67+
Crate("fuchsia-zircon-sys"),
68+
Crate("jobserver"),
69+
Crate("lazy_static"),
70+
Crate("libc"),
71+
Crate("log"),
72+
Crate("miniz-sys"),
73+
Crate("num_cpus"),
74+
Crate("rand"),
75+
Crate("rustc"),
76+
Crate("rustc-demangle"),
77+
Crate("rustc_trans"),
78+
Crate("tempdir"),
79+
Crate("winapi"),
80+
Crate("winapi-i686-pc-windows-gnu"),
81+
Crate("winapi-x86_64-pc-windows-gnu"),
8282
];
8383

8484
// Some types for Serde to deserialize the output of `cargo metadata` to...

0 commit comments

Comments
 (0)