rust/cargo: ignore RUSTSEC-2026-0009 for time crate

cargo audit reports this security issue with the time crate but Suricata
remains unaffected as no influenced fn is used by Suricata.
Advisory: https://rustsec.org/advisories/RUSTSEC-2026-0009

The MSRV for newer time crate versions are higher than the MSRV for
Suricata right now: 1.75.0

Hence, the best course of action is to suppress this warning.

Ticket: 8269
pull/14767/head
Shivani Bhardwaj 6 months ago
parent 364d2c077d
commit 11b2860f23

@ -87,6 +87,8 @@ jobs:
IGNORES+=(--ignore RUSTSEC-2020-0036) IGNORES+=(--ignore RUSTSEC-2020-0036)
# failure, via bendy # failure, via bendy
IGNORES+=(--ignore RUSTSEC-2019-0036) IGNORES+=(--ignore RUSTSEC-2019-0036)
# time crate update
IGNORES+=(--ignore RUSTSEC-2026-0009)
cargo audit -D warnings "${IGNORES[@]}" cargo audit -D warnings "${IGNORES[@]}"

Loading…
Cancel
Save