mirror of
https://github.com/zhom/banderole.git
synced 2026-08-17 14:57:12 +02:00
33 lines
727 B
TOML
33 lines
727 B
TOML
# Configuration for cargo-deny
|
|
|
|
[licenses]
|
|
allow = [
|
|
"MIT",
|
|
"Apache-2.0",
|
|
"Apache-2.0 WITH LLVM-exception",
|
|
"BSD-3-Clause",
|
|
"Unicode-3.0",
|
|
"CC0-1.0",
|
|
"MPL-2.0",
|
|
"Zlib",
|
|
"bzip2-1.0.6",
|
|
# rustls stack (ring, untrusted, rustls-webpki) — replaces the OpenSSL/native-tls path.
|
|
"ISC",
|
|
# Mozilla root certificate bundle shipped by webpki-roots.
|
|
"CDLA-Permissive-2.0",
|
|
]
|
|
|
|
confidence-threshold = 0.8
|
|
|
|
[advisories]
|
|
db-path = "~/.cargo/advisory-db"
|
|
db-urls = ["https://github.com/rustsec/advisory-db"]
|
|
unmaintained = "workspace"
|
|
yanked = "warn"
|
|
|
|
[sources]
|
|
unknown-registry = "warn"
|
|
unknown-git = "warn"
|
|
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
|
|
allow-git = []
|