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
# cargo-deny configuration
[]
# Check for multiple versions of the same crate
= []
= true
= false
[]
= "~/.cargo/advisories"
= ["https://github.com/rustsec/advisory-db"]
# vulnerability check is now implicit and always on
= "workspace"
= "all"
= "deny"
= [
"RUSTSEC-2023-0071", # Marvin Attack: timing sidechannel in rsa (no fix available, CLI usage only)
]
[]
# Allow common open source licenses
= [
"MIT",
"Apache-2.0",
"BSD-3-Clause",
"ISC",
"MPL-2.0",
"Unicode-3.0",
"CDLA-Permissive-2.0",
"Zlib",
"BSL-1.0",
]
= 0.8
[]
= "warn"
= "deny"