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
54
55
56
57
# cargo-deny configuration for entangle
[]
# By default, check all targets.
= []
= false
= false
[]
= "~/.cargo/advisory-db"
= ["https://github.com/rustsec/advisory-db"]
# A list of advisory IDs to ignore
= []
# How to handle unmaintained crates (options: "all", "workspace", "transitive", "none")
= "workspace"
# How to handle unsound crates (options: "all", "workspace", "transitive", "none")
= "workspace"
[]
# The list of licenses we allow
= [
"MIT",
"Apache-2.0",
"BSD-3-Clause",
"BSD-2-Clause",
"CC0-1.0",
"Unicode-3.0", # Used by ICU dependencies of gix
"Zlib", # Used by foldhash
"MPL-2.0", # Used by option-ext and uluru
]
# The confidence threshold for license detection (0.0 to 1.0)
= 0.8
[]
# How to handle multiple versions of the same crate
= "warn"
# How to handle wildcard dependencies
= "allow"
# How to highlight the graph path to banned/duplicate crates
= "all"
# A list of crates to allow/deny/skip
= []
= []
= []
= []
[]
# How to handle crates from unknown registries
= "deny"
# How to handle crates from unknown git repositories
= "deny"
# The list of allowed registries
= [
"https://github.com/rust-lang/crates.io-index",
]
# The list of allowed git repositories
= []