Skip to content

Commit

Permalink
chore: ignore unmaintained crate until upstream
Browse files Browse the repository at this point in the history
  • Loading branch information
c-git committed Sep 25, 2024
1 parent 04b5138 commit 7641b85
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions deny.toml
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" },
]

0 comments on commit 7641b85

Please sign in to comment.