# 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"]