# 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", "BSD-3-Clause", "ISC", ] 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"]