This is an automated email from the ASF dual-hosted git repository.
liurenjie1024 pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/iceberg-rust.git
The following commit(s) were added to refs/heads/main by this push:
new 70d5b0b Move `zlib` and `unicode` licenses to `allow` (#566)
70d5b0b is described below
commit 70d5b0b49e6e18676da82434ed1ee9a68d00d34b
Author: Fokko Driesprong <[email protected]>
AuthorDate: Tue Aug 20 08:32:23 2024 +0200
Move `zlib` and `unicode` licenses to `allow` (#566)
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]]