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
# Supply-chain policy for `cargo deny check`.
#
# pool-mod has zero runtime dependencies; this policy governs the dev-dependency
# tree (proptest, criterion, and their transitive crates) and guards against
# vulnerable, yanked, unlicensed, or untrusted-source crates entering it.
[]
= true
[]
= 2
= "deny"
[]
= 2
= 0.9
# An allowance the current tree does not exercise is fine; the list is a forward
# policy, not an exact inventory.
= "allow"
# Permissive licenses only. Covers the current (dev-only) dependency tree and the
# common permissive family.
= [
"MIT",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
"Unlicense",
"Zlib",
]
[]
# Duplicate major versions are a dev-tree smell, not a shipping risk here, so warn.
= "warn"
# Wildcard version requirements (`*`) are forbidden; pin or use a bounded range.
= "deny"
[]
= "deny"
= "deny"
= ["https://github.com/rust-lang/crates.io-index"]