From 41b93fbb8b757559f82f185acb4d6fb163b0306f Mon Sep 17 00:00:00 2001 From: Ellie Huxtable Date: Thu, 13 Jun 2024 12:37:43 +0100 Subject: [PATCH] chore: add audit config, ignore RUSTSEC-2023-0071 (#2126) --- .cargo/audit.toml | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 .cargo/audit.toml diff --git a/.cargo/audit.toml b/.cargo/audit.toml new file mode 100644 index 00000000..342aa88d --- /dev/null +++ b/.cargo/audit.toml @@ -0,0 +1,9 @@ +[advisories] +ignore = [ + # This is a vuln on RSA. RSA is in our lockfile, but not in cargo-tree. + # It is a issue with sqlx/cargo, and does not affect Atuin. + # See: + # - https://github.com/launchbadge/sqlx/issues/3211 + # - https://github.com/rust-lang/cargo/issues/10801 + "RUSTSEC-2023-0071" +]