Files
kata-containers/deny.toml
stevenhorsman a0410e0d5c static-checks: Update cargo deny config
The previous config is not valid, so update it based on information
from https://embarkstudios.github.io/cargo-deny/checks/cfg.html

Signed-off-by: stevenhorsman <steven@uk.ibm.com>
2026-04-11 08:46:32 +01:00

40 lines
669 B
TOML

[graph]
targets = [
"x86_64-unknown-linux-gnu",
"aarch64-unknown-linux-gnu",
"x86_64-unknown-linux-musl",
"aarch64-apple-darwin",
"x86_64-apple-darwin",
]
[advisories]
unmaintained = "workspace"
unsound = "workspace"
ignore = []
[bans]
multiple-versions = "allow"
deny = []
[licenses]
# We want really high confidence when inferring licenses from text
confidence-threshold = 0.93
allow = [
"0BSD",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"CC0-1.0",
"ISC",
"MIT",
"MIT-0",
"MPL-2.0",
"Unicode-3.0",
"Zlib",
]
private = { ignore = true }
[sources]
unknown-registry = "allow"
unknown-git = "allow"