1
1
mirror of https://github.com/ellie/atuin.git synced 2024-07-07 09:26:22 +03:00

chore: add audit config, ignore RUSTSEC-2023-0071 (#2126)

This commit is contained in:
Ellie Huxtable 2024-06-13 12:37:43 +01:00 committed by GitHub
parent 5f2df6584d
commit 41b93fbb8b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

9
.cargo/audit.toml Normal file
View File

@ -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"
]