mirror of
https://github.com/n0-computer/noq.git
synced 2026-09-21 18:53:27 +00:00
46 lines
1.9 KiB
TOML
46 lines
1.9 KiB
TOML
[advisories]
|
|
ignore = [
|
|
# gcc is only included as a minimal-versions workaround, not actually used
|
|
"RUSTSEC-2025-0121",
|
|
]
|
|
|
|
[licenses]
|
|
allow = [
|
|
"Apache-2.0",
|
|
"BSD-2-Clause",
|
|
"BSD-3-Clause",
|
|
"CDLA-Permissive-2.0",
|
|
"ISC",
|
|
"MIT",
|
|
"NCSA",
|
|
"OpenSSL", # aws-lc-fips-sys
|
|
"Unicode-3.0",
|
|
"Zlib", # foldhash, dependency of fastbloom
|
|
]
|
|
private = { ignore = true }
|
|
|
|
[bans]
|
|
multiple-versions = "warn"
|
|
skip = [
|
|
# hdrhistogram uses base64 0.21, newer crates use 0.22
|
|
{ crate = "base64", reason = "hdrhistogram uses 0.21, newer crates use 0.22" },
|
|
{ crate = "cpufeatures", reason = "rand 0.10 pulls in newer chacha (which depends on this), but aes-gcm hasn't updated yet" },
|
|
# ring uses getrandom 0.2, newer crates use 0.3
|
|
{ crate = "getrandom", reason = "ring depends on 0.2, newer ecosystem uses 0.3" },
|
|
{ crate = "r-efi", reason = "proptest dev-dependency pulls in old getrandom" },
|
|
# follows getrandom versions
|
|
{ crate = "wasi", reason = "follows getrandom version split" },
|
|
# various transitive deps require different windows-sys versions
|
|
{ crate = "windows-sys", reason = "transitive deps require different versions" },
|
|
{ crate = "windows-targets", reason = "follows windows-sys" },
|
|
{ crate = "windows_aarch64_gnullvm", reason = "follows windows-sys" },
|
|
{ crate = "windows_aarch64_msvc", reason = "follows windows-sys" },
|
|
{ crate = "windows_i686_gnu", reason = "follows windows-sys" },
|
|
{ crate = "windows_i686_gnullvm", reason = "follows windows-sys" },
|
|
{ crate = "windows_i686_msvc", reason = "follows windows-sys" },
|
|
{ crate = "windows_x86_64_gnu", reason = "follows windows-sys" },
|
|
{ crate = "windows_x86_64_gnullvm", reason = "follows windows-sys" },
|
|
{ crate = "windows_x86_64_msvc", reason = "follows windows-sys" },
|
|
{ crate = "wit-bindgen", reason = "proptest dev-dependency pulls in old getrandom" },
|
|
]
|