rust: suppress cargo audit for RUSTSEC-2026-0097

Per https://rustsec.org/advisories/RUSTSEC-2026-0097,
this issue it not applicable unless the "log" and "thread_rng"
features of rand are enabled.  "log" is not enabled in our
dependency chain.

Updating to the fixed version of rand requires an MSRV of 1.85.

Ticket: #8467
(cherry picked from commit be36e67f52)
pull/15218/head
Jason Ish 6 days ago committed by Victor Julien
parent de84f580b4
commit 5d050a456b

@ -89,5 +89,7 @@ jobs:
IGNORES+=(--ignore RUSTSEC-2019-0036) IGNORES+=(--ignore RUSTSEC-2019-0036)
# time crate update # time crate update
IGNORES+=(--ignore RUSTSEC-2026-0009) IGNORES+=(--ignore RUSTSEC-2026-0009)
# rand, vla tls-parser
IGNORES+=(--ignore RUSTSEC-2026-0097)
cargo audit -D warnings "${IGNORES[@]}" cargo audit -D warnings "${IGNORES[@]}"

Loading…
Cancel
Save