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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# cargo-deny configuration
[]
= [
{ = "x86_64-unknown-linux-gnu" },
{ = "x86_64-apple-darwin" },
{ = "x86_64-pc-windows-msvc" },
{ = "aarch64-unknown-linux-gnu" },
]
[]
# A list of advisory IDs to ignore
= [
"RUSTSEC-2025-0056", # adler crate unmaintained
"RUSTSEC-2025-0057", # fxhash unmaintained
"RUSTSEC-2025-0140", # gix-date vulnerability
"RUSTSEC-2025-0021", # gix-features SHA-1 collision
"RUSTSEC-2025-0001", # gix-worktree-state permissions vulnerability
"RUSTSEC-2024-0384", # instant unmaintained
]
[]
# List of explicitly allowed licenses
# https://spdx.org/licenses/
= [
"MIT",
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"0BSD",
"Zlib",
"Unicode-3.0",
]
# Blanket approval or denial for OSI-approved or FSF Free/Libre licenses
# * both - The license will be approved if it is both OSI-approved *AND* FSF approved
# * either - The license will be approved if it is either OSI-approved *OR* FSF approved
# * osi - The license will be approved if it is OSI-approved *OR* FSF approved
# * fsf - The license will be approved if it is FSF approved
# * neither - The license will be approved if it is *NEITHER* OSI-approved *NOR* FSF approved
= 0.8
[]
# Lint level for when multiple versions of the same crate are detected
= "warn"
# Lint level for when a crate version requirement is `*`
= "allow"
# The graph highlighting used when creating dotgraphs for crates
= "all"
# The default lint level if no other predicates are matched
= [
#{ name = "ansi_term", version = "*" },
]
= [
# Each entry the name of a crate and a version range. If version is
# not specified, all versions will be matched.
#{ name = "ansi_term", version = "*" },
]
# Certain crates/versions that will be skipped when doing duplicate detection.
= [
#{ name = "ansi_term", version = "*" },
]
# Similarly to `skip` allows you to skip certain crates from being checked. Unlike `skip`,
# `skip-tree` skips the crate and all of its dependencies entirely
= [
#{ name = "ansi_term", version = "*" },
]
[]
# Lint level for what to happen when a crate from a crate registry that is
# not in the allow list is encountered
= "warn"
# Lint level for what to happen when a crate from a git repository that is not
# in the allow list is encountered
= "warn"