From 34643fc1681ee890e5e53c53f50667aec2a87f14 Mon Sep 17 00:00:00 2001 From: "ilblackdragon@gmail.com" Date: Mon, 9 Mar 2026 23:13:23 -0700 Subject: [PATCH] fix: add missing Unlicense and CDLA-Permissive-2.0 to license allowlist Add Unlicense (used by aho-corasick, memchr, etc.) and CDLA-Permissive-2.0 (used by webpki-roots) to prevent cargo deny check from failing on the current dependency tree. Co-Authored-By: Claude Opus 4.6 --- deny.toml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deny.toml b/deny.toml index a9d6fe7a..0d7d7fd5 100644 --- a/deny.toml +++ b/deny.toml @@ -26,6 +26,8 @@ allow = [ "0BSD", "BSL-1.0", "CC0-1.0", + "Unlicense", + "CDLA-Permissive-2.0", ] unused-allowed-license = "allow"