From decd9182b17604fde5bf2f0e6a1f69a0f8b21461 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Dr=C3=B6ge?= Date: Tue, 6 Aug 2024 08:43:43 +0300 Subject: [PATCH] deny: Update for new configuration format Part-of: --- deny.toml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/deny.toml b/deny.toml index b3105bb52..002093a7f 100644 --- a/deny.toml +++ b/deny.toml @@ -1,22 +1,24 @@ +[graph] exclude = [ "examples", "tutorials", ] [advisories] +version = 2 db-path = "~/.cargo/advisory-db" db-urls = ["https://github.com/rustsec/advisory-db"] -vulnerability = "deny" -unmaintained = "warn" -notice = "warn" ignore = [] [licenses] -unlicensed = "deny" -default = "deny" -copyleft = "deny" -allow-osi-fsf-free = "either" +version = 2 confidence-threshold = 0.8 +allow = [ + "MIT", + "Apache-2.0", + "Apache-2.0 WITH LLVM-exception", + "Unicode-DFS-2016", +] [bans] multiple-versions = "deny"