From 9c708dbb02cfcb4acd498bf8672ac1afa9230b1d Mon Sep 17 00:00:00 2001 From: Eliah Kagan Date: Tue, 25 Feb 2025 15:42:17 -0500 Subject: [PATCH] Drop unused "Unicode-DFS-2016" license from allowed list `cargo deny` warned that "Unicode-DFS-2016" appeared in the list of allowed licenses but was not used by any dependency. This list had both "Unicode-3.0" and "Unicode-DFS-2016". Possibly relevant is that `unicode-ident` updated its license in 1.0.14 (https://github.com/dtolnay/unicode-ident/pull/28), changing from "Unicode-DFS-2016" to "Unicode-3.0". The "Unicode-3.0" license was added to `deny.toml` in 5173e9a (#1668), but "Unicode-DFS-2016" was not removed at that time. It looks like some Unicode-related packages still used that license at that time. But it does not seem to be needed here anymore. --- deny.toml | 1 - 1 file changed, 1 deletion(-) diff --git a/deny.toml b/deny.toml index d0c6a98beb1..1cb36a1f799 100644 --- a/deny.toml +++ b/deny.toml @@ -28,7 +28,6 @@ allow = [ "ISC", "LicenseRef-ring", "OpenSSL", - "Unicode-DFS-2016", "Zlib", "MPL-2.0", "Unicode-3.0"