# Cargo deny configuration
# See https://github.com/EmbarkStudios/cargo-deny for documentation
# License checking
[]
# Allow these licenses
= [
"MIT",
"Apache-2.0",
"BSD-3-Clause",
"BSD-2-Clause",
"0BSD",
"ISC",
"Zlib",
"Unlicense",
"Unicode-3.0",
]
# Check for security vulnerabilities
[]
# Check for unmaintained crates
= "none"
# Check for yanked crates
= "deny"
# Ban specific crates
[]
# Don't allow multiple versions of the same crate
= "warn"
# Check for sources
[]
# Only allow crates from crates.io
= "deny"
# Allow git dependencies
= "allow"