This is an automated email from the ASF dual-hosted git repository.
xuanwo pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/opendal.git
The following commit(s) were added to refs/heads/main by this push:
new 3f45fc2eb chore: suppress noisy deny warnings (#6816)
3f45fc2eb is described below
commit 3f45fc2eb63fa64d0a54fb2dd26495d72dd273e7
Author: tison <[email protected]>
AuthorDate: Mon Nov 24 20:24:24 2025 +0800
chore: suppress noisy deny warnings (#6816)
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"