From 6fc821864ee689ef7dba0748aa4e84504c6ddb97 Mon Sep 17 00:00:00 2001 From: "ilblackdragon@gmail.com" Date: Tue, 10 Mar 2026 00:18:04 -0700 Subject: [PATCH] fix: use valid cargo-deny v0.19 syntax for unmaintained advisories MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The `unmaintained` field in [advisories] accepts "all", "workspace", "transitive", or "none" — not "warn". Use "workspace" to flag unmaintained direct dependencies without failing on transitive ones. Co-Authored-By: Claude Opus 4.6 --- deny.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deny.toml b/deny.toml index 0d7d7fd5..7e04fe1d 100644 --- a/deny.toml +++ b/deny.toml @@ -2,7 +2,7 @@ targets = [] [advisories] -unmaintained = "warn" +unmaintained = "workspace" yanked = "deny" ignore = [ # Add specific RUSTSEC IDs with justification comments as needed