From 8a11c61a7af9ffa6585ee93b266e02fa1d642ba8 Mon Sep 17 00:00:00 2001 From: Stefan Lankes Date: Mon, 21 Oct 2019 20:23:59 +0200 Subject: [PATCH] remove hermit-abi from the wrong list, add to the whitelist --- src/tools/tidy/src/deps.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tools/tidy/src/deps.rs b/src/tools/tidy/src/deps.rs index cc56e3b96d95..e6ea1c75e289 100644 --- a/src/tools/tidy/src/deps.rs +++ b/src/tools/tidy/src/deps.rs @@ -52,7 +52,6 @@ const EXCEPTIONS: &[&str] = &[ "constant_time_eq", // CC0-1.0, rustfmt "utf8parse", // Apache-2.0 OR MIT, cargo via strip-ansi-escapes "vte", // Apache-2.0 OR MIT, cargo via strip-ansi-escapes - "hermit-abi", // Apache-2.0 OR MIT "sized-chunks", // MPL-2.0+, cargo via im-rc // FIXME: this dependency violates the documentation comment above: "fortanix-sgx-abi", // MPL-2.0+, libstd but only for `sgx` target @@ -182,6 +181,7 @@ const WHITELIST: &[Crate<'_>] = &[ Crate("winapi-util"), Crate("winapi-x86_64-pc-windows-gnu"), Crate("wincolor"), + Crate("hermit-abi"), ]; // Some types for Serde to deserialize the output of `cargo metadata` to.