From 8e61e0c30d06704ddaafece7ac061991a5a8ce09 Mon Sep 17 00:00:00 2001 From: DaniPopes <57450786+DaniPopes@users.noreply.github.com> Date: Mon, 9 Dec 2024 16:41:20 +0100 Subject: [PATCH] chore: update deny.toml --- deny.toml | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/deny.toml b/deny.toml index 9e9019c..b5ae159 100644 --- a/deny.toml +++ b/deny.toml @@ -1,38 +1,40 @@ [advisories] -vulnerability = "deny" -unmaintained = "warn" -unsound = "warn" +version = 2 yanked = "warn" -notice = "warn" +ignore = [] [bans] multiple-versions = "warn" -wildcards = "allow" +wildcards = "deny" highlight = "all" [licenses] -unlicensed = "deny" confidence-threshold = 0.9 # copyleft = "deny" allow = [ "MIT", + "MIT-0", "Apache-2.0", "Apache-2.0 WITH LLVM-exception", + "BSD-2-Clause", "BSD-3-Clause", "ISC", "Unicode-DFS-2016", + "Unicode-3.0", "Unlicense", + "MPL-2.0", "Zlib", - "Unicode-3.0", + # https://github.com/briansmith/ring/issues/902 + "LicenseRef-ring", + # https://github.com/briansmith/webpki/issues/148 + "LicenseRef-webpki", ] exceptions = [ # CC0 is a permissive license but somewhat unclear status for source code # so we prefer to not have dependencies using it # https://tldrlegal.com/license/creative-commons-cc0-1.0-universal - { allow = ["CC0-1.0"], name = "secp256k1" }, - { allow = ["CC0-1.0"], name = "secp256k1-sys" }, { allow = ["CC0-1.0"], name = "tiny-keccak" }, { allow = ["CC0-1.0"], name = "aurora-engine-modexp" }, ]