mirror of
https://github.com/kata-containers/kata-containers.git
synced 2026-04-12 23:04:33 +00:00
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>
40 lines
669 B
TOML
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"
|