zeroclaw/deny.toml
Will Sarg 28ec4ae826
fix(ci): reduce Docker Actions cost without weakening PR gates (#232)
* fix(docker): update workflow to improve Docker image build and push process, add timeout

* fix(licenses): allow Apache-2.0 WITH LLVM-exception
2026-02-15 18:15:38 -05:00

35 lines
689 B
TOML

# cargo-deny configuration — v2 schema
# https://embarkstudios.github.io/cargo-deny/
[advisories]
unmaintained = "workspace"
yanked = "warn"
[licenses]
# All licenses are denied unless explicitly allowed
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
"Unicode-DFS-2016",
"OpenSSL",
"Zlib",
"MPL-2.0",
"CDLA-Permissive-2.0",
"0BSD",
]
unused-allowed-license = "allow"
[bans]
multiple-versions = "warn"
wildcards = "allow"
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []