From 1f693c5925b2aa6adde7a7b7aebe8e12349e0495 Mon Sep 17 00:00:00 2001 From: Trent Nelson Date: Wed, 18 Nov 2020 20:21:46 -0700 Subject: [PATCH] audit: Ignore RUSTSEC-2020-0071, potential SEGV in `time` --- ci/test-checks.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ci/test-checks.sh b/ci/test-checks.sh index 9ef9f49a35..03faca3fca 100755 --- a/ci/test-checks.sh +++ b/ci/test-checks.sh @@ -74,6 +74,11 @@ cargo_audit_ignores=( # # Blocked on multiple upstream crates removing their `stdweb` dependency. --ignore RUSTSEC-2020-0056 + + # Potential segfault in the time crate + # + # Blocked on multiple crates updating `time` to >= 0.2.23 + --ignore RUSTSEC-2020-0071 ) _ scripts/cargo-for-all-lock-files.sh +"$rust_stable" audit "${cargo_audit_ignores[@]}"