ci: Add exception for tokio (#3966)

This commit is contained in:
Jon Cinque 2023-01-10 00:05:27 +01:00 committed by GitHub
parent 56b1a95230
commit 64b844ace2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -9,5 +9,11 @@ cargo_audit_ignores=(
# #
# Blocked on chrono updating `time` to >= 0.2.23 # Blocked on chrono updating `time` to >= 0.2.23
--ignore RUSTSEC-2020-0071 --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
) )
cargo +"$rust_stable" audit "${cargo_audit_ignores[@]}" cargo +"$rust_stable" audit "${cargo_audit_ignores[@]}"