From a609bb0984d6fb375eff2ee8e556ab20b00daeaf Mon Sep 17 00:00:00 2001 From: Taiki Endo Date: Thu, 21 Oct 2021 17:27:26 +0900 Subject: [PATCH] ci: ignore RUSTSEC-2020-0159 in audit (#4186) --- .cargo/audit.toml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .cargo/audit.toml diff --git a/.cargo/audit.toml b/.cargo/audit.toml new file mode 100644 index 00000000000..4fd083d9481 --- /dev/null +++ b/.cargo/audit.toml @@ -0,0 +1,7 @@ +# See https://github.com/rustsec/rustsec/blob/59e1d2ad0b9cbc6892c26de233d4925074b4b97b/cargo-audit/audit.toml.example for example. + +[advisories] +ignore = [ + # https://github.com/tokio-rs/tokio/issues/4177 + "RUSTSEC-2020-0159", +]