1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2025-01-27 17:18:37 +00:00
starship/.cargo/audit.toml
David Knaack c42339040c
chore(audit): add back RUSTSEC-2020-0071 & RUSTSEC-2020-0159 to ignore list (#4057)
This reverts commit b1ad1c79f53fcc27373cd6128191a867b50fb579.
2022-06-11 23:39:52 +02:00

12 lines
349 B
TOML

[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",
]