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.
This commit is contained in:
Will Hickey 2023-01-09 12:23:18 -06:00 committed by GitHub
parent a703019caa
commit 3aa0a005f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -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[@]}"