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
# Supply-chain policy for `cargo deny check`.
#
# bloom-lib has one runtime dependency (`libm`) plus an optional one (`serde`).
# This policy governs that small runtime tree and the larger dev-dependency tree
# (proptest, criterion, serde_json, and their transitive crates), guarding
# against vulnerable, yanked, unlicensed, or untrusted-source crates.
[]
= 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 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"]