From 0a857df9ba00412c54e90193b5bb42f2bd3cb355 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFs=20Postula?= Date: Thu, 9 Oct 2025 16:19:28 +0200 Subject: [PATCH 1/2] [feat] deny openssl-sys --- deny.toml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/deny.toml b/deny.toml index a6c5096..b431e11 100644 --- a/deny.toml +++ b/deny.toml @@ -29,6 +29,9 @@ allow-registry = [ ] [bans] multiple-versions = "deny" +deny = [ + "openssl-sys", +] skip = [ { name = "toml" }, { name = "self_cell" }, From f039ba6a916b40826d18f1cb500d6c244fdf993f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFs=20Postula?= Date: Thu, 9 Oct 2025 17:24:07 +0200 Subject: [PATCH 2/2] Update deny.toml --- deny.toml | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/deny.toml b/deny.toml index b431e11..fc702ef 100644 --- a/deny.toml +++ b/deny.toml @@ -1,23 +1,26 @@ [licenses] version = 2 allow = [ - "Apache-2.0", + "0BSD", "Apache-2.0 WITH LLVM-exception", + "Apache-2.0", "Artistic-2.0", "BSD-2-Clause", "BSD-3-Clause", "BSL-1.0", + "bzip2-1.0.6", "CC0-1.0", + "CDLA-Permissive-2.0", "ISC", + "LicenseRef-UFL-1.0", "MIT", "MIT-0", "MPL-2.0", - "0BSD", + "OFL-1.1", + "Unicode-3.0", "Unicode-DFS-2016", "Unlicense", "Zlib", - "OFL-1.1", - "LicenseRef-UFL-1.0", ] unused-allowed-license = "allow" [licenses.private] @@ -28,7 +31,7 @@ allow-registry = [ "ssh://git@ssh.shipyard.rs/foresight-mining-software-corporation/crate-index.git" ] [bans] -multiple-versions = "deny" +multiple-versions = "warn" deny = [ "openssl-sys", ]