From e2a6ae6de686905af1d1c1e16f4138f82fdf442a Mon Sep 17 00:00:00 2001 From: chrysn Date: Fri, 29 Nov 2024 18:11:33 +0100 Subject: [PATCH] deny: Allow newer Unicode license --- deny.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deny.toml b/deny.toml index 52385c5..4a15aca 100644 --- a/deny.toml +++ b/deny.toml @@ -2,10 +2,10 @@ version = 2 # We'll generally add license here as long as they're OSI approved, but let's keep an eye on them… allow = ["Apache-2.0", "BSD-3-Clause", "ISC", "MIT"] -# … and for those, I'd rather doublecheck: +# … and for those, I'd rather doublecheck (all are either FSF or OSI approved): exceptions = [ { allow = ["LGPL-2.1"], crate = "riot-sys" }, - { allow = ["Unicode-DFS-2016"], crate = "unicode-ident" }, + { allow = ["Unicode-DFS-2016", "Unicode-3.0"], crate = "unicode-ident" }, ] private = { ignore = true } confidence-threshold = 1.0