about summary refs log tree commit diff
diff options
context:
space:
mode:
authorbjorn3 <bjorn3@users.noreply.github.com>2021-03-29 13:22:35 +0200
committerbjorn3 <bjorn3@users.noreply.github.com>2021-05-07 18:48:59 +0200
commit3ae15ca04f1ba5db8864b08203462e472cf8630a (patch)
tree1082ca9d577dc2ac1c8b710cb951d22278a34cbc
parentf5d388302b045f60a417b906f80c00d46db99ee5 (diff)
downloadrust-3ae15ca04f1ba5db8864b08203462e472cf8630a.tar.gz
rust-3ae15ca04f1ba5db8864b08203462e472cf8630a.zip
Allow wasmparser dependency
-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 064dd716521..5f4ba71d91a 100644
--- a/src/tools/tidy/src/deps.rs
+++ b/src/tools/tidy/src/deps.rs
@@ -42,6 +42,7 @@ const EXCEPTIONS: &[(&str, &str)] = &[
     ("snap", "BSD-3-Clause"),           // rustc
     // FIXME: this dependency violates the documentation comment above:
     ("fortanix-sgx-abi", "MPL-2.0"), // libstd but only for `sgx` target
+    ("wasmparser", "Apache-2.0 WITH LLVM-exception"), // rustc
 ];
 
 const EXCEPTIONS_CRANELIFT: &[(&str, &str)] = &[
@@ -222,6 +223,7 @@ const PERMITTED_DEPENDENCIES: &[&str] = &[
     "vcpkg",
     "version_check",
     "wasi",
+    "wasmparser",
     "winapi",
     "winapi-build",
     "winapi-i686-pc-windows-gnu",