Skip to content

Commit

Permalink
allow unicode license (#5337)
Browse files Browse the repository at this point in the history
# 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
  • Loading branch information
mockersf committed Jul 17, 2022
1 parent 2b93ab5 commit 9c116d5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ allow = [
"BSD-2-Clause",
"CC0-1.0",
]
exceptions = [
{ name = "unicode-ident", allow = ["Unicode-DFS-2016"] },
]
default = "deny"

[bans]
Expand Down

0 comments on commit 9c116d5

Please sign in to comment.