From e75ce534f6e41d6129163e13b1e41fea627bdcc8 Mon Sep 17 00:00:00 2001 From: divma <26765164+divagant-martian@users.noreply.github.com> Date: Mon, 18 Oct 2021 21:59:27 +0000 Subject: [PATCH] Ignore cargo audit advisory (#2730) ## Issue Addressed Related to #2727 Ignores the audit failure for the same reasons in #2727 --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index af0030b146..072ba0353e 100644 --- a/Makefile +++ b/Makefile @@ -164,7 +164,7 @@ arbitrary-fuzz: # Runs cargo audit (Audit Cargo.lock files for crates with security vulnerabilities reported to the RustSec Advisory Database) audit: cargo install --force cargo-audit - cargo audit --ignore RUSTSEC-2020-0071 + cargo audit --ignore RUSTSEC-2020-0071 --ignore RUSTSEC-2020-0159 # Runs `cargo udeps` to check for unused dependencies udeps: