From 9c116d557df5a88940ed2e29dab6ff13c84d61a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fran=C3=A7ois?= Date: Sun, 17 Jul 2022 23:14:38 +0000 Subject: [PATCH] allow unicode license (#5337) # Objective - Crate `unicode-ident` added the [unicode license](https://github.com/dtolnay/unicode-ident/blob/master/LICENSE-UNICODE). See https://github.com/dtolnay/unicode-ident#license. The only requirement seems to be to include the license in the distribution - This makes license check fail ## Solution - The license should be ok for Bevy, add it to the allowed licenses --- deny.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deny.toml b/deny.toml index 685fd68f93ab5..e060441b42336 100644 --- a/deny.toml +++ b/deny.toml @@ -23,6 +23,9 @@ allow = [ "BSD-2-Clause", "CC0-1.0", ] +exceptions = [ + { name = "unicode-ident", allow = ["Unicode-DFS-2016"] }, +] default = "deny" [bans]