We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c133f13 commit 15a240dCopy full SHA for 15a240d
1 file changed
.cargo/audit.toml
@@ -18,4 +18,13 @@ ignore = [
18
# `lru` IterMut unsoundness; transitive dep via reth's `discv5` and `ratatui`.
19
# Neither crate calls `iter_mut()` on the LruCache, so the affected code path is never hit.
20
"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",
30
]
0 commit comments