Skip to content

Commit 5273b99

Browse files
committed
chore(deps): ignore json5 unmaintained advisory in cargo-deny
The config crate 0.15.19 (latest) depends on json5 0.4.1 which is unmaintained. There is no upgrade path available as this is a transitive dependency. The advisory is for maintenance status, not a security vulnerability. RUSTSEC-2025-0120: json5 crate unmaintained (via config) - config 0.15.19 is the latest version - No alternative config crate exists with equivalent features - Safe to ignore as this is a maintenance advisory, not security vulnerability
1 parent 6a03ef4 commit 5273b99

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

deny.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,10 @@ targets = [
1313
[advisories]
1414
db-path = "~/.cargo/advisory-db"
1515
db-urls = ["https://github.com/rustsec/advisory-db"]
16-
ignore = []
16+
# Unmaintained crates that are transitive dependencies with no safe upgrade path
17+
ignore = [
18+
"RUSTSEC-2025-0120", # json5 unmaintained (via config 0.15.19, no upgrade available)
19+
]
1720

1821
[licenses]
1922
# List of allowed licenses
@@ -58,4 +61,4 @@ skip = [
5861
unknown-registry = "warn"
5962
unknown-git = "warn"
6063
allow-registry = ["https://github.com/rust-lang/crates.io-index"]
61-
allow-git = []
64+
allow-git = []

0 commit comments

Comments
 (0)