26 lines
456 B
TOML
26 lines
456 B
TOML
# cargo-deny configuration
|
|
# https://embarkstudios.github.io/cargo-deny/
|
|
|
|
[licenses]
|
|
# Allow common open source licenses
|
|
allow = [
|
|
"MIT",
|
|
"Apache-2.0",
|
|
"Unlicense",
|
|
"Zlib",
|
|
"Unicode-3.0",
|
|
]
|
|
confidence-threshold = 0.8
|
|
|
|
[bans]
|
|
multiple-versions = "warn"
|
|
wildcards = "allow"
|
|
|
|
[sources]
|
|
unknown-registry = "deny"
|
|
unknown-git = "deny"
|
|
|
|
[advisories]
|
|
# Ignore the paste unmaintained warning (ratatui dependency)
|
|
ignore = ["RUSTSEC-2024-0436"]
|