From e36ea7afbcf4be66220c2a5a75372e2ccbbe702a Mon Sep 17 00:00:00 2001 From: Oliver Gould Date: Fri, 14 Jun 2024 04:20:21 +0000 Subject: [PATCH] Allow the Unicode license (MIT-like) --- deny.toml | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/deny.toml b/deny.toml index c3d4c0e939..e87978a9e0 100644 --- a/deny.toml +++ b/deny.toml @@ -14,13 +14,14 @@ notice = "warn" ignore = [] [licenses] -unlicensed = "deny" allow = [ "Apache-2.0", "BSD-2-Clause", "BSD-3-Clause", "ISC", "MIT", + "Unicode-3.0", + "Unicode-DFS-2016", ] deny = [] copyleft = "deny" @@ -38,13 +39,6 @@ exceptions = [ "MIT", "OpenSSL", ], name = "ring", version = "*" }, - # The Unicode-DFS-2016 license is necessary for unicode-ident because they - # use data from the unicode tables to generate the tables which are - # included in the application. We do not distribute those data files so - # this is not a problem for us. See https://github.com/dtolnay/unicode-ident/pull/9/files - { allow = [ - "Unicode-DFS-2016", - ], name = "unicode-ident", version = "*" }, ] [[licenses.clarify]]