summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Knaack <davidkna@users.noreply.github.com>2022-06-11 23:39:52 +0200
committerGitHub <noreply@github.com>2022-06-11 23:39:52 +0200
commitc42339040c2969d2f3ab8342b0cfe824c2103f59 (patch)
tree5b8e118dd0fba4a0c68dd98b4c508592833aef8c
parent1a91510beda1de2c3b149b7aacc0d76cf4652482 (diff)
chore(audit): add back `RUSTSEC-2020-0071` & `RUSTSEC-2020-0159` to ignore list (#4057)
-rw-r--r--.cargo/audit.toml11
1 files changed, 11 insertions, 0 deletions
diff --git a/.cargo/audit.toml b/.cargo/audit.toml
new file mode 100644
index 000000000..5dbd178b6
--- /dev/null
+++ b/.cargo/audit.toml
@@ -0,0 +1,11 @@
+[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",
+]