-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeny.toml
More file actions
38 lines (34 loc) · 1.06 KB
/
Copy pathdeny.toml
File metadata and controls
38 lines (34 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# cargo-deny configuration — supply-chain, license, and advisory checks.
# Run locally with: cargo deny check
[advisories]
version = 2
yanked = "warn"
ignore = [
# paste: unmaintained (feature-complete proc-macro). No fix exists; pulled transitively, no
# security impact. (anyhow's RUSTSEC-2026-0190 is fixed by the 1.0.103 bump, not ignored.)
"RUSTSEC-2024-0436",
]
[licenses]
version = 2
# Permissive licenses we accept across the dependency tree.
allow = [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
"BSL-1.0", # xxhash-rust
"CDLA-Permissive-2.0", # webpki-roots
"BSD-2-Clause", # av1-grain, rav1e, v_frame (AVIF/image viz stack)
"Zlib", # foldhash
"NCSA", # libfuzzer-sys
"MPL-2.0", # option-ext (via dirs); weak file-level copyleft, fine as a dependency
]
confidence-threshold = 0.8
[bans]
multiple-versions = "warn"
wildcards = "warn"
[sources]
unknown-registry = "deny"
unknown-git = "deny"