add windows crate to allowed tidy list (why it worked before?)

This commit is contained in:
klensy 2023-05-09 19:04:25 +03:00
parent 3c03cce341
commit a083986852

View file

@ -268,6 +268,14 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[
"winapi-i686-pc-windows-gnu",
"winapi-util",
"winapi-x86_64-pc-windows-gnu",
"windows-targets",
"windows_aarch64_msvc",
"windows_aarch64_gnullvm",
"windows_x86_64_gnullvm",
"windows_i686_msvc",
"windows_i686_gnu",
"windows_x86_64_msvc",
"windows_x86_64_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.