From 802cebf51f5f385bc37bd8d60e80a79381247984 Mon Sep 17 00:00:00 2001 From: Josh Pschorr Date: Tue, 1 Oct 2024 13:53:02 -0700 Subject: [PATCH] Cleanup deny.toml --- deny.toml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/deny.toml b/deny.toml index d8b5b35d..0eb2cb5b 100644 --- a/deny.toml +++ b/deny.toml @@ -19,6 +19,9 @@ ignore = [ # Advisory: https://rustsec.org/advisories/RUSTSEC-2020-0071 # `chrono` uses an old version of `time`, but `chrono` >= 4.2 doesn't use the code path with the issue "RUSTSEC-2020-0071", + # Advisory: https://rustsec.org/advisories/RUSTSEC-2024-0375 + # `atty` is unmaintained, but we still use a version of criterion that brings it in + "RUSTSEC-2024-0375" ] @@ -132,8 +135,6 @@ deny = [ # Advisory: https://rustsec.org/advisories/RUSTSEC-2020-0071 # `chrono` uses an old version of `time`, but `chrono` >= 4.2 doesn't use the code path with the issue { name = "chrono", version = "<0.4.20" }, - # `atty` is unmaintained, but the version of criterion we use still relies on it - { name = "atty", wrappers = ["criterion"] } ]