about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCharles Lew <crlf0710@gmail.com>2022-09-17 02:48:38 +0800
committerCharles Lew <crlf0710@gmail.com>2022-09-17 02:56:03 +0800
commit686a982f70cb8e2bcf4d5a75169c852a78b2fc52 (patch)
treef5971c95fbf011127dd91bc17bbe81c6026d0a8b
parenta76dcd8b3bfade94cd36c6b6203f45889cbeba1b (diff)
downloadrust-686a982f70cb8e2bcf4d5a75169c852a78b2fc52.tar.gz
rust-686a982f70cb8e2bcf4d5a75169c852a78b2fc52.zip
Allow using `tinyvec_macros` dependency, which was introduced by newer version of `tinyvec`
-rw-r--r--src/tools/tidy/src/deps.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/tools/tidy/src/deps.rs b/src/tools/tidy/src/deps.rs
index cbd8cfa01fc..9aab66b1d21 100644
--- a/src/tools/tidy/src/deps.rs
+++ b/src/tools/tidy/src/deps.rs
@@ -20,6 +20,7 @@ const LICENSES: &[&str] = &[
     "Unlicense OR MIT",
     "0BSD OR MIT OR Apache-2.0", // adler license
     "Zlib OR Apache-2.0 OR MIT", // tinyvec
+    "MIT OR Apache-2.0 OR Zlib", // tinyvec_macros
     "MIT OR Zlib OR Apache-2.0", // miniz_oxide
 ];
 
@@ -218,6 +219,7 @@ const PERMITTED_DEPENDENCIES: &[&str] = &[
     "time",
     "tinystr",
     "tinyvec",
+    "tinyvec_macros",
     "thin-vec",
     "tracing",
     "tracing-attributes",