-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdeny.toml
More file actions
84 lines (73 loc) · 1.95 KB
/
deny.toml
File metadata and controls
84 lines (73 loc) · 1.95 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
# https://embarkstudios.github.io/cargo-deny/index.html
[graph]
targets = [
{ triple = "x86_64-unknown-linux-gnu" },
{ triple = "aarch64-unknown-linux-gnu" },
]
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 = "warn" # core2@0.4.0 is yanked with no upgrade path (transitive via kona); revisit when kona updates libp2p
ignore = [
"RUSTSEC-2024-0436", # paste - no longer maintained
"RUSTSEC-2023-0071", # https://github.com/NethermindEth/Catalyst/issues/735
"RUSTSEC-2025-0141", # unmaintained advisory detected, used by alethia-reth
"RUSTSEC-2026-0002", # lru IterMut soundness; transitive (discv5/kona), upgrade when deps allow
"RUSTSEC-2026-0105", # core2 unmaintained, no safe upgrade; transitive via kona → libp2p → multihash, check again after taiko-mono dependency update
]
[licenses]
allow = [
"MIT",
"Apache-2.0",
"0BSD",
"BSD-3-Clause",
"BSD-2-Clause",
"CC-BY-1.0",
"CC-BY-2.0",
"CC-BY-3.0",
"CC-BY-4.0",
"CC0-1.0",
"ISC",
"OpenSSL",
"Unicode-3.0",
"Unicode-DFS-2016",
"Zlib",
]
confidence-threshold = 0.8
unused-allowed-license = "allow"
[licenses.private]
ignore = false
registries = []
[[licenses.exceptions]]
allow = ["MPL-2.0", "CDLA-Permissive-2.0"]
name = "webpki-roots"
version = "*"
[[licenses.exceptions]]
allow = ["MPL-2.0"]
name = "option-ext"
version = "*"
[bans]
allow-wildcard-paths = true
multiple-versions = "allow"
wildcards = "deny"
highlight = "all"
[bans.workspace-dependencies]
duplicates = 'deny'
unused = 'deny'
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-git = [
"https://github.com/taikoxyz/taiko-mono.git",
"https://github.com/paradigmxyz/reth.git",
"https://github.com/taikoxyz/alethia-reth",
"https://github.com/op-rs/kona",
]
[sources.allow-org]
github = []
gitlab = []
bitbucket = []