forked from matter-labs/zksync-os-server
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdeny.toml
More file actions
55 lines (49 loc) · 1.27 KB
/
deny.toml
File metadata and controls
55 lines (49 loc) · 1.27 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
[graph]
targets = []
all-features = true
no-default-features = false
[output]
feature-depth = 1
[advisories]
ignore = [
# `rand` unsoundness with custom logger using `rand::rng()`. Too many
# transitive deps still pin 0.8.5, so upgrading is not feasible right now.
"RUSTSEC-2026-0097",
# hickory-proto 0.25.2 is pulled in transitively via reth-dns-discovery.
# DNS discovery is explicitly disabled in our network config, so neither
# code path is reachable. Proper fix requires upgrading reth to v2.2.0+
# which is a significant effort (alloy 1.x → 2.x migration).
"RUSTSEC-2026-0118",
"RUSTSEC-2026-0119",
]
[bans]
multiple-versions = "allow"
deny = []
skip = []
skip-tree = []
workspace-default-features = "allow"
external-default-features = "allow"
[sources]
unknown-registry = "deny"
unknown-git = "allow"
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
allow-git = []
[licenses]
# We want really high confidence when inferring licenses from text
confidence-threshold = 0.93
allow = [
"Apache-2.0",
"Apache-2.0 WITH LLVM-exception",
"MIT",
"MPL-2.0",
"BSD-2-Clause",
"BSD-3-Clause",
"0BSD",
"ISC",
"Unicode-3.0",
"Zlib",
"Unlicense",
"CDLA-Permissive-2.0",
"CDDL-1.0",
"CC0-1.0",
]