From 3aa0a005f942406968a29c81822564ec994959c9 Mon Sep 17 00:00:00 2001 From: Will Hickey Date: Mon, 9 Jan 2023 12:23:18 -0600 Subject: [PATCH] Add exception for RUSTSEC-2023-0001 to unblock CI. (#29585) * Add exception for RUSTSEC-2023-0001 to unblock CI. This Tokio issue only affects windows. --- ci/do-audit.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ci/do-audit.sh b/ci/do-audit.sh index 4afee5e1f..1d4c43c36 100755 --- a/ci/do-audit.sh +++ b/ci/do-audit.sh @@ -12,5 +12,11 @@ cargo_audit_ignores=( # # Blocked on chrono updating `time` to >= 0.2.23 --ignore RUSTSEC-2020-0071 + + # tokio: vulnerability affecting named pipes on Windows + # + # Exception is a stopgap to unblock CI + # https://github.com/solana-labs/solana/issues/29586 + --ignore RUSTSEC-2023-0001 ) scripts/cargo-for-all-lock-files.sh stable audit "${cargo_audit_ignores[@]}"