Skip to content

Commit 6f1a3d0

Browse files
committed
Disallow unmaintained crates via cargo-deny
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.
1 parent 8560570 commit 6f1a3d0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deny.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ targets = [
99
db-path = "~/.cargo/advisory-db"
1010
db-urls = ["https://github.com/rustsec/advisory-db"]
1111
vulnerability = "deny"
12-
unmaintained = "warn"
12+
unmaintained = "deny"
1313
yanked = "deny"
1414
notice = "warn"
1515
ignore = [

0 commit comments

Comments
 (0)