From 3e69fe5db3a5f7f8b827742d320a2ce03775589b Mon Sep 17 00:00:00 2001 From: dynamder Date: Wed, 19 Aug 2026 19:27:04 +0800 Subject: [PATCH] chore(deny): allow licenses used by the current dependency tree cargo-deny v2 (via the audit workflow) flags nine dependencies whose licenses were not in the allow list: ISC (untrusted, rustls-webpki, aws-lc-rs/sys), BSD-3-Clause (subtle), MIT-0 (aws-lc-sys), Zlib (foldhash), MPL-2.0 (option-ext), CDLA-Permissive-2.0 (webpki-root-certs). All are permissive licenses, so extend the allow list to match the tree. --- deny.toml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/deny.toml b/deny.toml index 95f9cb4..641db17 100644 --- a/deny.toml +++ b/deny.toml @@ -1,5 +1,15 @@ [licenses] -allow = ["MIT", "Apache-2.0", "Unicode-3.0"] +allow = [ + "MIT", + "Apache-2.0", + "Unicode-3.0", + "ISC", + "BSD-3-Clause", + "MIT-0", + "Zlib", + "MPL-2.0", + "CDLA-Permissive-2.0", +] [advisories] yanked = "deny"