This is an automated email from the ASF dual-hosted git repository. tison pushed a commit to branch deny in repository https://gitbox.apache.org/repos/asf/opendal.git
commit 870040cd4209fc3988a4eac09ae84de5d04479f5 Author: tison <[email protected]> AuthorDate: Mon Nov 24 20:14:06 2025 +0800 chore: suppress noisy deny warnings Signed-off-by: tison <[email protected]> --- deny.toml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/deny.toml b/deny.toml index 963cc0f7d..c8715e6b5 100644 --- a/deny.toml +++ b/deny.toml @@ -36,11 +36,11 @@ exceptions = [ # malachite and its subcrates are introduced in the Python bindings (pyo3-stub-gen) # they are only used in proc-macro so they won't be included in the final library - { crate = "malachite", allow = ["LGPL-3.0"] }, - { crate = "malachite-base", allow = ["LGPL-3.0"] }, - { crate = "malachite-bigint", allow = ["LGPL-3.0"] }, - { crate = "malachite-nz", allow = ["LGPL-3.0"] }, - { crate = "malachite-q", allow = ["LGPL-3.0"] }, + { crate = "malachite", allow = ["LGPL-3.0-only"] }, + { crate = "malachite-base", allow = ["LGPL-3.0-only"] }, + { crate = "malachite-bigint", allow = ["LGPL-3.0-only"] }, + { crate = "malachite-nz", allow = ["LGPL-3.0-only"] }, + { crate = "malachite-q", allow = ["LGPL-3.0-only"] }, # open data licenses that SHOULD be OK { crate = "unicode_names2", allow = ["Unicode-DFS-2016"] }, @@ -49,3 +49,4 @@ exceptions = [ # this config file is used for all crates; some of them would not encounter all the allowed licenses unused-allowed-license = "allow" +unused-license-exception = "allow"
