This is an automated email from the ASF dual-hosted git repository. fokko pushed a commit to branch fd-simplify-deny in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git
commit 57a6585ef63c372ae9dfefeb76182c215d5b32bf Author: Fokko Driesprong <fo...@apache.org> AuthorDate: Mon Aug 19 11:56:22 2024 +0200 Move `zlib` and `unicode` licenses to `allow` Both licenses can be moved to the `allowed` section: - **adler32** [ships](https://github.com/remram44/adler32-rs/blob/master/LICENSE) with a **zlib** license and is a category A-license - **unicode-ident** ships with a **UNICODE, INC. LICENSE AGREEMENT - DATA FILES AND SOFTWARE** which is also a category A-license The **ring** license is a bit [more involved](https://github.com/briansmith/ring/blob/main/LICENSE) and carries a lot of history, I think it is best to keep that as an exception for now, since the OpenSSL license is also not explicitly listed on the ASF page. I don't see anything alarming in the `LICENSE` file. ASF page on the subject: https://www.apache.org/legal/resolved.html#category-a --- deny.toml | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/deny.toml b/deny.toml index bde0f0a..9c62e0d 100644 --- a/deny.toml +++ b/deny.toml @@ -23,17 +23,13 @@ allow = [ "BSD-3-Clause", "ISC", "CC0-1.0", + "Unicode-DFS-2016", + "Zlib" ] exceptions = [ { allow = [ "OpenSSL", - ], name = "ring" }, - { allow = [ - "Unicode-DFS-2016", - ], name = "unicode-ident" }, - { allow = [ - "Zlib", - ], name = "adler32" }, + ], name = "ring" } ] [[licenses.clarify]]