-
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.
chore: ignore unmaintained crate until upstream
- Loading branch information
Showing
1 changed file
with
17 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,17 @@ | ||
# This section is considered when running `cargo deny check advisories` | ||
# More documentation for the advisories section can be found here: | ||
# https://embarkstudios.github.io/cargo-deny/checks/advisories/cfg.html | ||
[advisories] | ||
# The path where the advisory databases are cloned/fetched into | ||
# db-path = "$CARGO_HOME/advisory-dbs" | ||
# The url(s) of the advisory databases to use | ||
# db-urls = ["https://github.com/rustsec/advisory-db"] | ||
# A list of advisory IDs to ignore. Note that ignored advisories will still | ||
# output a note when they are encountered. | ||
ignore = [ | ||
# "RUSTSEC-0000-0000", | ||
# { id = "RUSTSEC-0000-0000", reason = "you can specify a reason the advisory is ignored" }, | ||
# "[email protected]", # you can also ignore yanked crate versions if you wish | ||
# { crate = "[email protected]", reason = "you can specify why you are ignoring the yanked crate" }, | ||
{ id = "RUSTSEC-2024-0370", reason = "Not updated upstream yet see https://github.com/shuttle-hq/shuttle/issues/1873" }, | ||
] |