From a083986852aea685f17939a237f8cc297c606745 Mon Sep 17 00:00:00 2001 From: klensy Date: Tue, 9 May 2023 19:04:25 +0300 Subject: [PATCH] add windows crate to allowed tidy list (why it worked before?) --- src/tools/tidy/src/deps.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/tools/tidy/src/deps.rs b/src/tools/tidy/src/deps.rs index baef4bb0140fb..675230b762d6f 100644 --- a/src/tools/tidy/src/deps.rs +++ b/src/tools/tidy/src/deps.rs @@ -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.