From cac1d6deb58bcc361048b3731fef0d2324ab48d0 Mon Sep 17 00:00:00 2001 From: cyberhoward Date: Tue, 2 Jan 2024 10:31:51 +0100 Subject: [PATCH] add `audit.toml` to ignore cw-orch sec warnings --- .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 0000000..139fffd --- /dev/null +++ b/.cargo/audit.toml @@ -0,0 +1,5 @@ +[advisories] +# Ignoring two advisories that are introduced by cw-orchestrator. +# They are safe to ignore as cw-orch is excluded from the binary as it's feature flagged. +# Deps that triggered the audit: [tungstenite, webpki] +ignore = ["RUSTSEC-2023-0065","RUSTSEC-2023-0052"] \ No newline at end of file