From 27c272a12c8cd4d01d1b5a2a85e2fd6a49260a2f Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Fri, 8 Jan 2021 10:49:21 -0800 Subject: [PATCH] Suppress cargo audit failure for `difference` crate, there's no newer crate to upgrade to yet (cherry picked from commit 3eaa826ad9226194820bf6b23fd9b927973dc497) --- ci/test-checks.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ci/test-checks.sh b/ci/test-checks.sh index d16aa27f70..fa88373125 100755 --- a/ci/test-checks.sh +++ b/ci/test-checks.sh @@ -80,6 +80,12 @@ cargo_audit_ignores=( # # Blocked on multiple crates updating `time` to >= 0.2.23 --ignore RUSTSEC-2020-0071 + + # difference is unmaintained + # + # Blocked on predicates v1.0.6 removing its dependency on `difference` + --ignore RUSTSEC-2020-0095 + ) _ scripts/cargo-for-all-lock-files.sh +"$rust_stable" audit "${cargo_audit_ignores[@]}"