From a1cac948d9bf7d418feb8f319b8497c0584ffda2 Mon Sep 17 00:00:00 2001 From: Lucas Nogueira Date: Thu, 10 Feb 2022 18:17:26 -0300 Subject: [PATCH] chore: ignore time and chrono security advisories --- .cargo/audit.toml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.cargo/audit.toml b/.cargo/audit.toml index eb0c6133a..2e1b98557 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -1,4 +1,6 @@ [advisories] ignore = [ - "RUSTSEC-2020-0095" # difference is unmaintained (used by `mockito`) + "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`) ]