-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathdeny.toml
More file actions
46 lines (41 loc) · 1.11 KB
/
deny.toml
File metadata and controls
46 lines (41 loc) · 1.11 KB
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
# I've removed most of the lines from the template config generated via
# cargo deny init to keep this readable.
# If you want to change something it may be worthwhile to run cargo deny init
# to get an overview of the options and their defaults.
# Note that all fields that take a lint level have these possible values:
# * deny - An error will be produced and the check will fail
# * warn - A warning will be produced, but the check will not fail
# * allow - No warning or error will be produced, though in some cases a note
# will be
[advisories]
version = 2
ignore = [
"RUSTSEC-2020-0056",
"RUSTSEC-2020-0077",
"RUSTSEC-2021-0059",
"RUSTSEC-2021-0060",
"RUSTSEC-2021-0064",
"RUSTSEC-2024-0384",
"RUSTSEC-2025-0036",
"RUSTSEC-2025-0052",
"RUSTSEC-2025-0141",
]
[bans]
multiple-versions = "allow"
[licenses]
version = 2
confidence-threshold = 0.8
unused-allowed-license = "deny"
allow = [
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"CC0-1.0",
"GPL-2.0-only",
"LGPL-2.1-or-later WITH GCC-exception-2.0",
"MIT",
"Unicode-3.0",
"Unlicense",
"WTFPL",
"Zlib",
]