From f8c7842708ca8cdcd6dc11c8b3e95dfdc2e134fe Mon Sep 17 00:00:00 2001 From: David Knaack Date: Thu, 14 Oct 2021 07:47:24 +0200 Subject: [PATCH] chore: hide warnings for known advisories (#3153) --- .cargo/audit.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .cargo/audit.toml diff --git a/.cargo/audit.toml b/.cargo/audit.toml new file mode 100644 index 00000000..9a25fa63 --- /dev/null +++ b/.cargo/audit.toml @@ -0,0 +1,9 @@ +[advisories] +ignore = [ + # difference is unmaintained + # Only used in test code + "RUSTSEC-2020-0095", + # Out-of-bounds write in nix::unistd::getgrouplist + # Tracked in #3140 + "RUSTSEC-2021-0119" +] \ No newline at end of file