From 63a5b32e266c9b6be5e364e71ed52c0159b0f7b2 Mon Sep 17 00:00:00 2001 From: toidiu Date: Mon, 4 Nov 2024 13:49:47 -0800 Subject: [PATCH] allow more --- .cargo/audit.toml | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/.cargo/audit.toml b/.cargo/audit.toml index c5ebfdba4..8b9b37e11 100644 --- a/.cargo/audit.toml +++ b/.cargo/audit.toml @@ -1,7 +1,11 @@ [advisories] ignore = [ - # `atty` is a dependency of structopt and only used in s2n-quic-qns and s2n-quic-sim + # `atty` is a dependency of `structopt` and only used in s2n-quic-qns and s2n-quic-sim "RUSTSEC-2021-0145", - # `atty` is a dependency of structopt and only used in s2n-quic-qns and s2n-quic-sim - "RUSTSEC-2024-0375" + # `atty` is a dependency of `structopt` and only used in s2n-quic-qns and s2n-quic-sim + "RUSTSEC-2024-0375", + # ` proc-macro-error` is a dependency of `structopt` and only used in s2n-quic-qns and s2n-quic-sim + "RUSTSEC-2024-0370", + # `ansi_term` is a dependency of `structopt` and only used in s2n-quic-qns and s2n-quic-sim + "RUSTSEC-2021-0139" ]