Skip to content

Commit

Permalink
Remove exceptions from deny.toml
Browse files Browse the repository at this point in the history
The ignored advisory no longer triggers after the jwt-simple upgrade.

The only unmaintained warning we had was for dotenv and an upcoming
version of cargo-deny will always error for unmaintained dependencies
(removing the configuration option) so might as well set it to deny now.
  • Loading branch information
svix-jplatte committed Mar 25, 2024
1 parent 86f4df0 commit 956c84f
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,10 @@ targets = [
db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"]
vulnerability = "deny"
unmaintained = "warn"
unmaintained = "deny"
yanked = "deny"
notice = "warn"
ignore = [
# TODO: Update dependencies that use rsa crate
"RUSTSEC-2023-0071",
]
ignore = []

[licenses]
unlicensed = "deny"
Expand Down

0 comments on commit 956c84f

Please sign in to comment.