mtp/deny.toml
Alex Emmet 687e6f9642 Merge
Crypto
WASM
TESTS
2026-06-25 22:08:44 +02:00

32 lines
754 B
TOML

# cargo-deny configuration. See https://embarkstudios.github.io/cargo-deny/
# Run locally with: cargo deny check
[advisories]
# Fail on any security advisory affecting the dependency tree.
yanked = "deny"
ignore = []
[bans]
# Flag multiple versions of the same crate so duplicate trees are visible.
multiple-versions = "warn"
wildcards = "deny"
[licenses]
# Allowlist of licenses acceptable for this project's dependencies.
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
"Zlib",
"MPL-2.0",
]
confidence-threshold = 0.8
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]