-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeny.toml
More file actions
97 lines (88 loc) · 2.33 KB
/
deny.toml
File metadata and controls
97 lines (88 loc) · 2.33 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
90
91
92
93
94
95
96
97
# 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 = [
# Unsoundness in `rand` 0.7.3 and 0.8.5 reachable only via a custom `log`
# logger that calls `rand::rng()` and hits a reseed during the log event.
# The only affected pulls are transitive: `cuckoofilter` -> `libp2p-floodsub`
# (stuck on 0.7.3) and `alloy-signer-local` (stuck on 0.8.5). Neither is
# reachable from Pluto's loggers. Remove once upstream bumps to >=0.9.3.
{ id = "RUSTSEC-2026-0097", reason = "transitive rand <0.9.3 via cuckoofilter and alloy-signer-local; not triggerable from our code" },
]
unmaintained = "workspace"
[licenses]
allow = [
"0BSD",
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"BSD-2-Clause",
"BSD-3-Clause",
"BSD-2-Clause-Patent",
"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",
]
exceptions = [{ crate = "attohttpc", allow = ["MPL-2.0"] }, { crate = "dyn-eq", allow = ["MPL-2.0"] }]
confidence-threshold = 0.8
unused-allowed-license = "allow"
[licenses.private]
ignore = true
registries = []
[bans]
wildcards = "deny"
allow-wildcard-paths = true
multiple-versions = "warn"
highlight = "all"
[bans.workspace-dependencies]
duplicates = 'deny'
unused = 'deny'
[sources]
unknown-registry = "deny"
unknown-git = "deny"
allow-git = [
"https://github.com/matter-labs/vise",
]
[sources.allow-org]
github = ["NethermindEth"]
gitlab = []
bitbucket = []