summaryrefslogtreecommitdiffstats
path: root/.cargo
diff options
context:
space:
mode:
authorDavid Knaack <davidkna@users.noreply.github.com>2021-10-21 23:35:08 +0200
committerGitHub <noreply@github.com>2021-10-21 17:35:08 -0400
commitd5a5ddf82612b1ce327b644634e095e9ff7669c7 (patch)
tree572fde2df010672105de9e628637eedcce0a0755 /.cargo
parenteb203ebe95aacecc8f479cf50eed433fbfdbdfc3 (diff)
chore: hide warnings for additional known advisories (#3170)
Diffstat (limited to '.cargo')
-rw-r--r--.cargo/audit.toml11
1 files changed, 10 insertions, 1 deletions
diff --git a/.cargo/audit.toml b/.cargo/audit.toml
index 9a25fa63a..4f9b595d2 100644
--- a/.cargo/audit.toml
+++ b/.cargo/audit.toml
@@ -2,8 +2,17 @@
ignore = [
# difference is unmaintained
# Only used in test code
+ # Tracked in #2835
"RUSTSEC-2020-0095",
# Out-of-bounds write in nix::unistd::getgrouplist
# Tracked in #3140
- "RUSTSEC-2021-0119"
+ "RUSTSEC-2021-0119",
+ # 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",
] \ No newline at end of file