Skip to content

Commit

Permalink
update deny for latest unicode-idents license
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjg committed Nov 27, 2024
1 parent 28d040f commit f06b3bb
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,12 @@ allow = [
"MIT",
"Apache-2.0",
"ISC",
"MPL-2.0",
# The Unicode-DFS--2016 license is necessary for various crates 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.
"Unicode-3.0",
"BSD-3-Clause",
#"Apache-2.0 WITH LLVM-exception",
]
Expand All @@ -109,12 +115,6 @@ confidence-threshold = 0.8
# Allow 1 or more licenses on a per-crate basis, so that particular licenses
# aren't accepted for every possible crate as with the normal allow list
exceptions = [
# 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
# for more details.
{ allow = ["MIT", "Apache-2.0", "Unicode-DFS-2016"], name = "unicode-ident" },

# This is fine I think
{ allow = ["OpenSSL"], name = "ring" },
Expand Down
8 changes: 4 additions & 4 deletions scripts/ci/deny
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ THIS_SCRIPT="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
cd $THIS_SCRIPT/../../

cargo deny --version
cargo deny check advisories
cargo deny check licenses
cargo deny check bans
cargo deny check sources
cargo deny --all-features check advisories
cargo deny --all-features check licenses
cargo deny --all-features check bans
cargo deny --all-features check sources

0 comments on commit f06b3bb

Please sign in to comment.