From b1ad1c79f53fcc27373cd6128191a867b50fb579 Mon Sep 17 00:00:00 2001 From: David Knaack Date: Sat, 14 May 2022 14:27:48 +0200 Subject: [PATCH] chore(audit): unignore `RUSTSEC-2020-0071` & `RUSTSEC-2020-0159` (#3985) --- .cargo/audit.toml | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 .cargo/audit.toml diff --git a/.cargo/audit.toml b/.cargo/audit.toml deleted file mode 100644 index 5dbd178b..00000000 --- a/.cargo/audit.toml +++ /dev/null @@ -1,11 +0,0 @@ -[advisories] -ignore = [ - # Potential segfault in the time crate - # chrono dependency, but vulnerable function is never called - # Tacked in #3163 - "RUSTSEC-2020-0071", - # chrono: Potential segfault in localtime_r invocations - # starship avoids setting any environment variables to avoid this issue - # Tracked in #3166 - "RUSTSEC-2020-0159", -]