Skip to content

Commit 15a240d

Browse files
authored
fix: ignore new cargo audit warnings (#138)
1 parent c133f13 commit 15a240d

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

.cargo/audit.toml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,13 @@ ignore = [
1818
# `lru` IterMut unsoundness; transitive dep via reth's `discv5` and `ratatui`.
1919
# Neither crate calls `iter_mut()` on the LruCache, so the affected code path is never hit.
2020
"RUSTSEC-2026-0002",
21+
22+
# `rsa` Marvin Attack; transitive dep via `sqlx-macros-core` -> `sqlx-mysql`. The `mysql`
23+
# feature is not enabled, so `sqlx-mysql` is never compiled — it only appears in Cargo.lock.
24+
"RUSTSEC-2023-0071",
25+
26+
# `rand` 0.8.5 unsoundness when `log` + `thread_rng` features are both enabled and a custom
27+
# logger calls `rand::rng()` during reseeding. Our 0.8.5 (transitive via alloy-consensus)
28+
# has neither feature enabled; our 0.9.4 is already patched.
29+
"RUSTSEC-2026-0097",
2130
]

0 commit comments

Comments
 (0)