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
51
52
53
# cargo-deny configuration
# https://embarkstudios.github.io/cargo-deny/
[]
= true
[]
# Opt into cargo-deny v2 advisory semantics: every RUSTSEC category
# (vulnerability, unsound, unmaintained, notice) is treated as an
# error by default rather than relying on per-severity opt-ins.
= 2
= "~/.cargo/advisory-db"
= ["https://github.com/rustsec/advisory-db"]
# Treat yanked crates as a hard error — yanking from crates.io is the
# author signalling 'do not depend on this version'.
= "deny"
# Flag unmaintained advisories regardless of whether the affected
# crate is direct or transitive ('all' is the cargo-deny default but
# we set it explicitly so the policy is visible at a glance).
= "all"
# Specific advisory IDs to suppress would go here, e.g. RUSTSEC-2020-0071
# Each entry should carry a reason in a comment so the suppression is
# auditable.
= []
[]
# Permissive licenses encountered in the Rust dependency graph.
# cargo-deny only sees Rust crates, not the vendored Clipper2 C++
# source — that one is BSL-1.0 (Boost Software License 1.0) and is
# documented in clipper2c/LICENSE plus the repository README.
= [
"MIT",
"Apache-2.0",
"BSD-3-Clause",
"ISC",
"Unicode-3.0",
]
= 0.93
= []
[]
= "warn"
= "warn"
= []
= []
= []
= []
[]
= "deny"
= "deny"
= ["https://github.com/rust-lang/crates.io-index"]
= []