1
Fork 0

Update tidy

This commit is contained in:
bjorn3 2025-01-05 15:54:55 +00:00
parent a94e2d513b
commit 8e51a89420

View file

@ -195,6 +195,7 @@ const EXCEPTIONS_CRANELIFT: ExceptionList = &[
("cranelift-module", "Apache-2.0 WITH LLVM-exception"), ("cranelift-module", "Apache-2.0 WITH LLVM-exception"),
("cranelift-native", "Apache-2.0 WITH LLVM-exception"), ("cranelift-native", "Apache-2.0 WITH LLVM-exception"),
("cranelift-object", "Apache-2.0 WITH LLVM-exception"), ("cranelift-object", "Apache-2.0 WITH LLVM-exception"),
("foldhash", "Zlib"),
("mach2", "BSD-2-Clause OR MIT OR Apache-2.0"), ("mach2", "BSD-2-Clause OR MIT OR Apache-2.0"),
("regalloc2", "Apache-2.0 WITH LLVM-exception"), ("regalloc2", "Apache-2.0 WITH LLVM-exception"),
("target-lexicon", "Apache-2.0 WITH LLVM-exception"), ("target-lexicon", "Apache-2.0 WITH LLVM-exception"),
@ -502,7 +503,7 @@ const PERMITTED_STDLIB_DEPENDENCIES: &[&str] = &[
const PERMITTED_CRANELIFT_DEPENDENCIES: &[&str] = &[ const PERMITTED_CRANELIFT_DEPENDENCIES: &[&str] = &[
// tidy-alphabetical-start // tidy-alphabetical-start
"ahash", "allocator-api2",
"anyhow", "anyhow",
"arbitrary", "arbitrary",
"bitflags", "bitflags",
@ -524,6 +525,7 @@ const PERMITTED_CRANELIFT_DEPENDENCIES: &[&str] = &[
"crc32fast", "crc32fast",
"equivalent", "equivalent",
"fallible-iterator", "fallible-iterator",
"foldhash",
"gimli", "gimli",
"hashbrown", "hashbrown",
"indexmap", "indexmap",
@ -533,7 +535,6 @@ const PERMITTED_CRANELIFT_DEPENDENCIES: &[&str] = &[
"mach2", "mach2",
"memchr", "memchr",
"object", "object",
"once_cell",
"proc-macro2", "proc-macro2",
"quote", "quote",
"regalloc2", "regalloc2",
@ -541,13 +542,11 @@ const PERMITTED_CRANELIFT_DEPENDENCIES: &[&str] = &[
"rustc-hash", "rustc-hash",
"serde", "serde",
"serde_derive", "serde_derive",
"slice-group-by",
"smallvec", "smallvec",
"stable_deref_trait", "stable_deref_trait",
"syn", "syn",
"target-lexicon", "target-lexicon",
"unicode-ident", "unicode-ident",
"version_check",
"wasmtime-jit-icache-coherence", "wasmtime-jit-icache-coherence",
"windows-sys", "windows-sys",
"windows-targets", "windows-targets",
@ -559,8 +558,6 @@ const PERMITTED_CRANELIFT_DEPENDENCIES: &[&str] = &[
"windows_x86_64_gnu", "windows_x86_64_gnu",
"windows_x86_64_gnullvm", "windows_x86_64_gnullvm",
"windows_x86_64_msvc", "windows_x86_64_msvc",
"zerocopy",
"zerocopy-derive",
// tidy-alphabetical-end // tidy-alphabetical-end
]; ];