use the (existing) .cargo/audit.toml to ignore some rust advisories

This commit is contained in:
Dustin J. Mitchell 2022-08-06 01:47:04 +00:00
parent 152db46ce3
commit bad3b3d700
3 changed files with 1 additions and 1 deletions

6
.cargo/audit.toml Normal file
View file

@ -0,0 +1,6 @@
[advisories]
ignore = [
"RUSTSEC-2021-0124", # see https://github.com/GothenburgBitFactory/taskwarrior/issues/2830
"RUSTSEC-2020-0159", # segfault in localtime_r - low risk to TC
"RUSTSEC-2020-0071", # same localtime_r bug as above
]