From ccd0d6aae611a784d94375dfc14e28cd03c48111 Mon Sep 17 00:00:00 2001 From: Georg Semmler Date: Thu, 11 Nov 2021 16:15:39 +0100 Subject: [PATCH] Ignore RUSTSEC-2020-0159 * we cannot do much there, without fundamental changes to rust-std * we do not call either setenv, nor any affected chrono function in diesel itself (only in tests) * I don't want to get that much e-mails about failed actions --- .cargo/audit.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .cargo/audit.toml diff --git a/.cargo/audit.toml b/.cargo/audit.toml new file mode 100644 index 000000000000..6ffa4a433bb3 --- /dev/null +++ b/.cargo/audit.toml @@ -0,0 +1,5 @@ +[advisories] +ignore = [ + # we cannot do much here without an update from chrono + we do not call any affected function + "RUSTSEC-2020-0159" +]