|
| 1 | +[advisories] |
| 2 | +# Ignore unmaintained/vulnerable crates that come from upstream dependencies we cannot control |
| 3 | +ignore = [ |
| 4 | + # rustls-pemfile is unmaintained but comes from bollard -> testcontainers (dev dependency) |
| 5 | + # No safe upgrade available, waiting for upstream to migrate to rustls-pki-types |
| 6 | + "RUSTSEC-2025-0134", |
| 7 | + |
| 8 | + # tokio-tar has a PAX header vulnerability but comes from testcontainers (dev dependency) |
| 9 | + # No safe upgrade available, tokio-tar is archived |
| 10 | + "RUSTSEC-2025-0111", |
| 11 | + |
| 12 | + # backoff is unmaintained but comes from rollup-boost -> kona-engine (upstream dependency) |
| 13 | + # No safe upgrade available |
| 14 | + "RUSTSEC-2025-0012", |
| 15 | + |
| 16 | + # bincode is unmaintained but comes from reth-nippy-jar (upstream reth dependency) |
| 17 | + # No safe upgrade available |
| 18 | + "RUSTSEC-2025-0141", |
| 19 | + |
| 20 | + # instant is unmaintained but comes from backoff -> rollup-boost (upstream dependency) |
| 21 | + # No safe upgrade available |
| 22 | + "RUSTSEC-2024-0384", |
| 23 | + |
| 24 | + # paste is unmaintained but widely used in ecosystem (alloy, reth, etc.) |
| 25 | + # No safe upgrade available |
| 26 | + "RUSTSEC-2024-0436", |
| 27 | +] |
| 28 | + |
| 29 | +[licenses] |
| 30 | +allow = [ |
| 31 | + "MIT", |
| 32 | + "Apache-2.0", |
| 33 | + "Apache-2.0 WITH LLVM-exception", |
| 34 | + "BSD-2-Clause", |
| 35 | + "BSD-3-Clause", |
| 36 | + "ISC", |
| 37 | + "Unicode-3.0", |
| 38 | + "Unlicense", |
| 39 | + "Zlib", |
| 40 | + "CC0-1.0", |
| 41 | + "MPL-2.0", |
| 42 | + "0BSD", |
| 43 | + "BSL-1.0", |
| 44 | + "OpenSSL", |
| 45 | + "CDLA-Permissive-2.0", |
| 46 | +] |
| 47 | + |
1 | 48 | [bans] |
2 | 49 | deny = ["reth"] |
3 | 50 | multiple-versions = "deny" |
4 | 51 |
|
5 | 52 | # Skip crates with multiple versions from upstream dependencies that we cannot control |
6 | 53 | # These are primarily from reth, alloy, and kona dependencies |
7 | 54 | skip = [ |
8 | | - # Alloy version mismatch between workspace (0.4.x) and kona-registry (0.2.x) |
| 55 | + # Alloy version mismatch between workspace and kona dependencies |
9 | 56 | "alloy-hardforks", |
10 | 57 | "alloy-op-hardforks", |
11 | 58 |
|
| 59 | + # Kona crates - git vs registry sources from different dependency paths |
| 60 | + "kona-genesis", |
| 61 | + "kona-registry", |
| 62 | + |
12 | 63 | # Windows platform crates - different versions used by various upstream deps |
13 | 64 | "windows-sys", |
14 | 65 | "windows", |
@@ -61,21 +112,23 @@ skip = [ |
61 | 112 | "redox_users", |
62 | 113 |
|
63 | 114 | # Network crates |
64 | | - "yamux", |
65 | 115 | "tungstenite", |
66 | 116 | "tokio-tungstenite", |
67 | 117 |
|
68 | 118 | # Metrics |
69 | 119 | "metrics-util", |
70 | 120 | "metrics-exporter-prometheus", |
71 | 121 |
|
| 122 | + # Serialization crates - version differences across ecosystem |
| 123 | + "serde_spanned", |
| 124 | + "toml", |
| 125 | + |
72 | 126 | # Other common duplicates from upstream |
73 | 127 | "base64", |
74 | 128 | "bindgen", |
75 | 129 | "cargo_metadata", |
76 | 130 | "core-foundation", |
77 | 131 | "crossterm", |
78 | | - "if-addrs", |
79 | 132 | "openssl-probe", |
80 | 133 | "procfs", |
81 | 134 | "procfs-core", |
|
0 commit comments