aboutsummaryrefslogtreecommitdiffstats
path: root/.cargo
diff options
context:
space:
mode:
authorEllie Huxtable <ellie@elliehuxtable.com>2024-06-13 12:37:43 +0100
committerGitHub <noreply@github.com>2024-06-13 12:37:43 +0100
commit41b93fbb8b757559f82f185acb4d6fb163b0306f (patch)
tree7bdaee294cf288cad0984fffaa02c1a88c46cb12 /.cargo
parentchore: update to rust 1.78 (diff)
downloadatuin-41b93fbb8b757559f82f185acb4d6fb163b0306f.zip
chore: add audit config, ignore RUSTSEC-2023-0071 (#2126)
Diffstat (limited to '.cargo')
-rw-r--r--.cargo/audit.toml9
1 files changed, 9 insertions, 0 deletions
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"
+]