# cargo-deny configuration - run locally with `cargo deny check`.
# https://crates.io/crates/cargo-deny
[]
# Fail on any security advisory from the RustSec database.
= 2
= []
[]
# Only permit OSI-approved, MIT-compatible licenses.
= 2
= 0.8
= [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
"Unicode-DFS-2016",
"Zlib",
"MPL-2.0",
"CC0-1.0",
]
[]
# Duplicate versions are a warning, not an error, for a leaf binary.
= "warn"
= "allow"
[]
# Every dependency must come from crates.io.
= "deny"
= "deny"
= ["https://github.com/rust-lang/crates.io-index"]