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
39
40
41
42
43
44
45
46
47
48
49
50
# cargo-deny configuration for dotseal.
# Run via: cargo deny check
# See https://embarkstudios.github.io/cargo-deny/ for the schema.
[]
= true
[]
# Allow-list of OSI-approved licenses compatible with MIT OR Apache-2.0
# distribution. Anything outside this set must be reviewed before it can
# enter the dependency graph.
= [
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"BSL-1.0",
"ISC",
"MIT",
"MIT-0",
"MPL-2.0",
"Unicode-3.0",
"Unicode-DFS-2016",
"Zlib",
]
= 0.9
[]
# Surface (but don't fail on) duplicate major versions of the same crate.
# Tracked separately as D-I2 in FINDINGS.md — will tighten to "deny" once
# the RustCrypto stack lands rand_core 0.9 / getrandom 0.3 (see D-L3).
= "warn"
# Wildcard version requirements ("*") are forbidden — they bypass MSRV
# guarantees and let upstream majors slip in unchecked.
= "deny"
= []
[]
# Reject yanked crates and any open RUSTSEC vulnerability.
= "deny"
= "workspace"
= []
[]
# All deps must come from the official crates.io registry. No git or
# local-path overrides without an explicit allow-list entry.
= "deny"
= "deny"
= ["https://github.com/rust-lang/crates.io-index"]
= []