From ae1e9216ea0b314b82afc7a648c30332b968b93c Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Wed, 15 Feb 2023 09:49:05 -0800 Subject: [PATCH] CI: Ignore RUSTSEC-2021-0145 since it only affects benchmarks. See the issue linked in audit.toml for more info. --- .cargo/audit.toml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.cargo/audit.toml b/.cargo/audit.toml index a0805ee1f1..0514a5089d 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -1,5 +1,13 @@ [advisories] -ignore = [] +ignore = [ + # criterion.rs is a benchmark-only dependency. + # https://github.com/bheisler/criterion.rs/issues/629 + # Dependency tree: + # atty 0.2.14 + # └── criterion 0.4.0 + # └── ring 0.17.0-not-released-yet + "RUSTSEC-2021-0145", +] [output] deny = ["warnings", "yanked", "unsound", "unmaintained"]