allow zerocopy license

This commit is contained in:
Ralf Jung 2023-12-02 19:36:08 +01:00
parent 71c9ceb4da
commit c0c0b5b5a6

View File

@ -16,6 +16,7 @@ const LICENSES: &[&str] = &[
"Apache-2.0 OR MIT", "Apache-2.0 OR MIT",
"Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", // wasi license "Apache-2.0 WITH LLVM-exception OR Apache-2.0 OR MIT", // wasi license
"Apache-2.0/MIT", "Apache-2.0/MIT",
"BSD-2-Clause OR Apache-2.0 OR MIT", // zerocopy
"ISC", "ISC",
"MIT / Apache-2.0", "MIT / Apache-2.0",
"MIT OR Apache-2.0 OR LGPL-2.1-or-later", // r-efi, r-efi-alloc "MIT OR Apache-2.0 OR LGPL-2.1-or-later", // r-efi, r-efi-alloc
@ -392,6 +393,8 @@ const PERMITTED_RUSTC_DEPENDENCIES: &[&str] = &[
"yansi-term", // 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. "yansi-term", // 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.
"yoke", "yoke",
"yoke-derive", "yoke-derive",
"zerocopy",
"zerocopy-derive",
"zerofrom", "zerofrom",
"zerofrom-derive", "zerofrom-derive",
"zerovec", "zerovec",