From 3b5f4a5c8170059bb539a40ac5e437ac39e52054 Mon Sep 17 00:00:00 2001 From: Orbital Date: Sat, 27 May 2023 10:57:09 -0500 Subject: [PATCH] Ignore audit advisory for integration tests The bitcoind package introduces a security vulnerability in the time dependency. But since bitcoind is only used in the integration tests, we can safely ignore this advisory. --- .cargo/audit.toml | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 .cargo/audit.toml diff --git a/.cargo/audit.toml b/.cargo/audit.toml new file mode 100644 index 00000000..3e1d5b3e --- /dev/null +++ b/.cargo/audit.toml @@ -0,0 +1,2 @@ +[advisories] +ignore = ["RUSTSEC-2020-0071"]