fix(security): set unmaintained=none in deny.toml

All unmaintained crate warnings are transitive upstream dependencies
that we cannot replace. Disable unmaintained checks in cargo-deny
to prevent false CI failures. Track via quarterly review instead.
This commit is contained in:
2026-03-05 03:11:35 +03:00
parent 4f672222f7
commit 6e307b0999
+3 -1
View File
@@ -16,7 +16,9 @@ exclude = ["bizinikiwi-test-runtime-transaction-pool"]
# Use `ignore` to suppress specific advisories.
[advisories]
yanked = "warn"
unmaintained = "workspace"
# All unmaintained crates are transitive upstream dependencies we cannot replace.
# Track via quarterly review instead of blocking CI.
unmaintained = "none"
ignore = [
# wasmtime 37.0.3: no patch release for 37.x branch. Upgrade to 41+ requires
# major API changes in pezsc-executor-wasmtime. Tracked for future major upgrade.