From 7baeb04f26b0c9df3eefe0e4d5b4a0a23888bd38 Mon Sep 17 00:00:00 2001 From: Brooks Prumo Date: Mon, 18 Oct 2021 15:29:12 -0500 Subject: [PATCH] Ignore RUSTSEC-2020-0159 --- ci/do-audit.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/ci/do-audit.sh b/ci/do-audit.sh index 71a0465d6f..3356b3423f 100755 --- a/ci/do-audit.sh +++ b/ci/do-audit.sh @@ -46,5 +46,11 @@ cargo_audit_ignores=( # https://github.com/paritytech/jsonrpc/issues/605 --ignore RUSTSEC-2021-0079 + # chrono: Potential segfault in `localtime_r` invocations + # + # Blocked due to no safe upgrade + # https://github.com/chronotope/chrono/issues/499 + --ignore RUSTSEC-2020-0159 + ) scripts/cargo-for-all-lock-files.sh stable audit "${cargo_audit_ignores[@]}"