ontoref/deny.toml

49 lines
1.0 KiB
TOML
Raw Normal View History

# cargo-deny configuration — cargo-deny 0.18+
# https://embarkstudios.github.io/cargo-deny/
2026-03-13 00:15:49 +00:00
[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
unmaintained = "workspace"
2026-03-13 00:15:49 +00:00
yanked = "warn"
ignore = [
# RUSTSEC-2023-0071: rsa Marvin Attack (timing side-channel).
# rsa is a transitive dep; not used in network-facing key operations here.
# Revisit when rsa publishes a patched release.
{ id = "RUSTSEC-2023-0071" },
]
2026-03-13 00:15:49 +00:00
[licenses]
allow = [
"MIT",
"MIT-0",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-DFS-2016",
"Unicode-3.0",
"CC0-1.0",
"Zlib",
"Unlicense",
"MPL-2.0",
"OpenSSL",
"CDLA-Permissive-2.0",
"BUSL-1.1",
2026-03-13 00:15:49 +00:00
]
exceptions = []
2026-03-13 00:15:49 +00:00
[bans]
multiple-versions = "warn"
allow = []
deny = []
skip = []
skip-tree = []
2026-03-13 00:15:49 +00:00
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []