forked from linux-automation/tacd
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdeny.toml
41 lines (36 loc) · 996 Bytes
/
deny.toml
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
# I've removed most of the lines from the template config generated via
# cargo deny init to keep this readble.
# 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]
ignore = [
"RUSTSEC-2020-0056",
"RUSTSEC-2020-0071",
"RUSTSEC-2020-0077",
"RUSTSEC-2021-0059",
"RUSTSEC-2021-0060",
"RUSTSEC-2021-0064",
]
[bans]
multiple-versions = "allow"
[licenses]
unlicensed = "deny"
default = "deny"
confidence-threshold = 0.8
copyleft = "allow"
allow = [
"Apache-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"CC0-1.0",
"MIT",
"Unicode-DFS-2016",
"Unlicense",
"WTFPL",
"Zlib",
]