Skip to content

Commit

Permalink
Update license configuration in deny.toml
Browse files Browse the repository at this point in the history
Add the ISC license to the allowed list and include exceptions for several crates such as alloc-no-stdlib, alloc-stdlib, brotli, lol_html, and subtle under BSD-3-Clause. This ensures compliance and flexibility with licensing requirements while maintaining the integrity of the project.
  • Loading branch information
friedemannsommer committed Dec 1, 2024
1 parent bfb0a9d commit ad50990
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,20 @@ allow = [
"MIT",
"Apache-2.0",
"MPL-2.0",
"Unicode-3.0"
"Unicode-3.0",
"ISC"
]
# [between 0.0 and 1.0].
confidence-threshold = 0.8
exceptions = [
{ name = "alloc-no-stdlib", allow = ["BSD-3-Clause"] },
{ name = "alloc-stdlib", allow = ["BSD-3-Clause"] },
{ name = "brotli", allow = ["BSD-3-Clause"] },
{ name = "encoding_rs", allow = ["BSD-3-Clause"] },
{ name = "lol_html", allow = ["BSD-3-Clause"] },
{ name = "ring", allow = ["LicenseRef-ring"] },
{ name = "searproxy", allow = ["AGPL-3.0"] },
{ name = "subtle", allow = ["BSD-3-Clause"] },
]

[[licenses.clarify]]
Expand Down

0 comments on commit ad50990

Please sign in to comment.