From 3dfbd95ddcd4f8f0eccdd2850ece1af4f713d7bb Mon Sep 17 00:00:00 2001 From: Justin Starry Date: Fri, 24 Sep 2021 16:42:40 -0400 Subject: [PATCH] temporarily disable new audit --- ci/do-audit.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ci/do-audit.sh b/ci/do-audit.sh index 71a0465d6..73c57b59a 100755 --- a/ci/do-audit.sh +++ b/ci/do-audit.sh @@ -46,5 +46,7 @@ cargo_audit_ignores=( # https://github.com/paritytech/jsonrpc/issues/605 --ignore RUSTSEC-2021-0079 + # zeroize_derive: `#[zeroize(drop)]` doesn't implement `Drop` for `enum`s + --ignore RUSTSEC-2021-0115 ) scripts/cargo-for-all-lock-files.sh stable audit "${cargo_audit_ignores[@]}"