From 5d1751eeddacd5b19c20b81ae62a137e0afefb77 Mon Sep 17 00:00:00 2001 From: Brian Smith Date: Wed, 15 Feb 2023 09:46:17 -0800 Subject: [PATCH] CI: Stop ignoreing serde_cbor advisory since it is no longer being used. criterion.rs replaced serde_cbor in 0.4.0 so we should have removed this workaround when upgrading to 0.4.0. --- .cargo/audit.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.cargo/audit.toml b/.cargo/audit.toml index d1899dc86f..a0805ee1f1 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -1,7 +1,5 @@ [advisories] -# https://github.com/bheisler/criterion.rs/issues/534. serde_cbor is a -# benchmark-only dependency. -ignore = ["RUSTSEC-2021-0127"] +ignore = [] [output] deny = ["warnings", "yanked", "unsound", "unmaintained"]