From 203c6a8b13ba38b5edee78aefd39bfab53f5e5c0 Mon Sep 17 00:00:00 2001 From: Lucas Fernandes Nogueira Date: Sun, 20 Mar 2022 09:57:52 -0300 Subject: [PATCH] feat: remove chrono and time audit ignore rules (#3741) --- .cargo/audit.toml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.cargo/audit.toml b/.cargo/audit.toml index 2e1b98557..eb0c6133a 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -1,6 +1,4 @@ [advisories] ignore = [ - "RUSTSEC-2020-0095", # difference is unmaintained (used by `mockito`) - "RUSTSEC-2020-0071", # potential segfault in the time crate (not fixed on `zip` and `mac-notification-sys`) - "RUSTSEC-2020-0159" # potential segfault in `localtime_r` invocations on the chrono crate (not fixed on `mac-notification-sys`) + "RUSTSEC-2020-0095" # difference is unmaintained (used by `mockito`) ]