29 lines
553 B
TOML
29 lines
553 B
TOML
[advisories]
|
|
version = 2
|
|
db-path = "~/.cargo/advisory-db"
|
|
ignore = [
|
|
# paste is unmaintained but it's a transitive dep via simba -> nalgebra
|
|
# with no fix available upstream yet
|
|
"RUSTSEC-2024-0436",
|
|
]
|
|
|
|
[licenses]
|
|
version = 2
|
|
allow = [
|
|
"MIT",
|
|
"Apache-2.0",
|
|
"Apache-2.0 WITH LLVM-exception",
|
|
"Unicode-3.0",
|
|
"Zlib",
|
|
]
|
|
confidence-threshold = 0.8
|
|
|
|
[bans]
|
|
multiple-versions = "warn"
|
|
wildcards = "allow"
|
|
|
|
[sources]
|
|
unknown-registry = "warn"
|
|
unknown-git = "warn"
|
|
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
|