From 2ebf7635e703d8b0dc1744fcf101e5e988a1ee90 Mon Sep 17 00:00:00 2001 From: Jon Gjengset Date: Sun, 18 Aug 2024 09:41:27 +0200 Subject: [PATCH] Match newer cargo-deny semantics See https://github.com/EmbarkStudios/cargo-deny/pull/606 --- deny.toml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/deny.toml b/deny.toml index d25d512..89d01f6 100644 --- a/deny.toml +++ b/deny.toml @@ -1,15 +1,16 @@ [advisories] -vulnerability = "deny" -unmaintained = "warn" -notice = "warn" +version = 2 ignore = [] [licenses] -unlicensed = "deny" -allow = [] -deny = [] -copyleft = "warn" -allow-osi-fsf-free = "either" +version = 2 +allow = [ + "MIT", + "BSD-2-Clause", + "CC0-1.0", + "Apache-2.0", + "Apache-2.0 WITH LLVM-exception", +] confidence-threshold = 0.8 [bans]