-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeny.toml
More file actions
89 lines (80 loc) · 1.74 KB
/
deny.toml
File metadata and controls
89 lines (80 loc) · 1.74 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
# https://embarkstudios.github.io/cargo-deny/index.html
[graph]
targets = [
{ triple = "x86_64-unknown-linux-gnu" },
{ triple = "aarch64-unknown-linux-gnu" },
{ triple = "x86_64-unknown-linux-musl" },
{ triple = "aarch64-apple-darwin" },
{ triple = "x86_64-apple-darwin" },
{ triple = "x86_64-pc-windows-msvc" },
{ triple = "wasm32-unknown-unknown" },
{ triple = "wasm32-wasi" },
{ triple = "aarch64-linux-android" },
{ triple = "aarch64-apple-ios" },
]
all-features = true
no-default-features = false
[output]
feature-depth = 1
[advisories]
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
yanked = "deny"
ignore = []
unmaintained = "workspace"
[licenses]
allow = [
"0BSD",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"BSD-2-Clause-Patent",
"BSL-1.0",
"CC-BY-1.0",
"CC-BY-2.0",
"CC-BY-3.0",
"CC-BY-4.0",
"CC0-1.0",
"CDLA-Permissive-1.0",
"CDLA-Permissive-2.0",
"FTL",
"ISC",
"JSON",
"MIT",
"MS-PL",
"OpenSSL",
"PostgreSQL",
"SHL-0.5",
"SHL-0.51",
"TCP-wrappers",
"Unicode-3.0",
"Unicode-DFS-2016",
"UPL-1.0",
"W3C-20150513",
"WTFPL",
"Xnet",
"Zlib",
]
confidence-threshold = 0.8
unused-allowed-license = "allow"
[licenses.private]
ignore = false
registries = []
[bans]
wildcards = "deny"
allow-wildcard-paths = true
multiple-versions = "warn"
highlight = "all"
[bans.workspace-dependencies]
duplicates = 'deny'
# TODO(template) you should provide an example with the lib usage
unused = 'deny'
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-git = []
[sources.allow-org]
github = ["NethermindEth"]
gitlab = []
bitbucket = []