From 85252777a62e2d1f29cbe91843257159fb7fb232 Mon Sep 17 00:00:00 2001 From: Trent Nelson Date: Mon, 1 Mar 2021 12:46:25 -0700 Subject: [PATCH] Add RUSTSEC-2020-0146 to audit ignores --- ci/test-checks.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ci/test-checks.sh b/ci/test-checks.sh index 0c2d3e663..43ae73835 100755 --- a/ci/test-checks.sh +++ b/ci/test-checks.sh @@ -84,6 +84,12 @@ cargo_audit_ignores=( # Blocked on predicates v1.0.6 removing its dependency on `difference` --ignore RUSTSEC-2020-0095 + # generic-array: arr! macro erases lifetimes + # + # Blocked on libsecp256k1 releasing with upgraded dependencies + # https://github.com/paritytech/libsecp256k1/issues/66 + --ignore RUSTSEC-2020-0146 + ) _ scripts/cargo-for-all-lock-files.sh +"$rust_stable" audit "${cargo_audit_ignores[@]}"