From 7827f357b55961c8ca0cb94241d622f4c1b823db Mon Sep 17 00:00:00 2001 From: Jason Ish Date: Tue, 11 Aug 2026 10:10:22 -0600 Subject: [PATCH] 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. --- .github/workflows/rust-checks.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/rust-checks.yml b/.github/workflows/rust-checks.yml index 218a2dd5d8..3368245029 100644 --- a/.github/workflows/rust-checks.yml +++ b/.github/workflows/rust-checks.yml @@ -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[@]}"