github-ci: suppress RUSTSEC-2026-0253

RUSTSEC-2026-0253 in the lru crate requires that items we put in the
lru have a drop implementation that may panic, and we catch
that panic. The current items we put in the lru cache do not have a drop
implementation, and we treat panic's as fatal so will not run into the
issue presented in RUSTSEC-2026-0253.
pull/16014/head
Jason Ish 1 month ago committed by Victor Julien
parent d2497790f9
commit 7827f357b5

@ -91,6 +91,8 @@ jobs:
IGNORES+=(--ignore RUSTSEC-2026-0009)
# rand, vla tls-parser
IGNORES+=(--ignore RUSTSEC-2026-0097)
# lru, doesn't affect us
IGNORES+=(--ignore RUSTSEC-2026-0253)
cargo audit -D warnings "${IGNORES[@]}"

Loading…
Cancel
Save