Skip to content

Commit e961db0

Browse files
varex83agentvarex83
andcommitted
fix(deny): ignore RUSTSEC advisories for transitive deps
RUSTSEC-2026-0097: rand 0.8.x unsoundness (transitive dep) RUSTSEC-2026-0098: rustls-webpki URI name constraint bypass (transitive dep) Co-Authored-By: Bohdan Ohorodnii <35969035+varex83@users.noreply.github.com>
1 parent aad679b commit e961db0

1 file changed

Lines changed: 6 additions & 1 deletion

File tree

deny.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,12 @@ feature-depth = 1
2323
db-path = "~/.cargo/advisory-db"
2424
db-urls = ["https://github.com/rustsec/advisory-db"]
2525
yanked = "deny"
26-
ignore = []
26+
ignore = [
27+
# rand 0.8.x unsoundness — transitive dep, cannot upgrade immediately
28+
{ id = "RUSTSEC-2026-0097" },
29+
# rustls-webpki URI name constraint bypass — transitive dep
30+
{ id = "RUSTSEC-2026-0098" },
31+
]
2732
unmaintained = "workspace"
2833

2934
[licenses]

0 commit comments

Comments
 (0)