-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Fix SQLX vulnerability (#2736)
SQLX 0.8.0 had a vulnerability, which didn't affect us. At the time of discovery, there was no fix. We silenced the warning to unlock development. This PR bumps SQLX to 0.8.1 which includes the vulnerability fix and removes the cargo deny allowlist. Co-authored-by: perekopskiy <[email protected]>
- Loading branch information
1 parent
aea3726
commit d8e43e7
Showing
8 changed files
with
71 additions
and
66 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
|
@@ -6,9 +6,7 @@ vulnerability = "deny" | |
unmaintained = "warn" | ||
yanked = "warn" | ||
notice = "warn" | ||
ignore = [ | ||
"RUSTSEC-2024-0363", # allows [email protected] until fix is released, more here -- https://github.com/launchbadge/sqlx/issues/3440 | ||
] | ||
ignore = [] | ||
|
||
[licenses] | ||
unlicensed = "deny" | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.