-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Suppress known audit warnings that we mitigate.
- Loading branch information
1 parent
12dcf37
commit aa32a64
Showing
2 changed files
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
[advisories] | ||
ignore = [ | ||
# `cargo audit` thinks we depend on `sqlx-mysql` and therefore `rsa`. | ||
# We do not, as we do not enable the "mysql" feature for `sqlx`. | ||
"RUSTSEC-2023-0071", | ||
# `sqlx` may interpret a value larger than 4 GB as commands.. | ||
# We mitigate this by limiting the size of the request. | ||
"RUSTSEC-2024-0363", | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -110,6 +110,7 @@ | |
pkgs.moreutils | ||
|
||
# Rust | ||
pkgs.cargo-audit | ||
pkgs.cargo-edit | ||
pkgs.cargo-expand | ||
pkgs.cargo-flamegraph | ||
|