From d11f63701fe0f7c3e2fccb2ce16e0708ff22590a Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Fri, 20 Dec 2024 15:32:55 +0100 Subject: [PATCH] chore: fix deny.toml see https://github.com/EmbarkStudios/cargo-deny/pull/611 Signed-off-by: Harald Hoyer --- deny.toml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/deny.toml b/deny.toml index 608ba27..2fc391c 100644 --- a/deny.toml +++ b/deny.toml @@ -1,15 +1,15 @@ +[graph] targets = [] all-features = false no-default-features = false + +[output] feature-depth = 1 [advisories] db-path = "~/.cargo/advisory-db" db-urls = ["https://github.com/rustsec/advisory-db"] -vulnerability = "deny" -unmaintained = "warn" yanked = "warn" -notice = "warn" ignore = [ # Sidechannel attack to get the private key https://rustsec.org/advisories/RUSTSEC-2023-0071 # currently no rsa private key is used in the codebase, @@ -20,8 +20,6 @@ ignore = [ ] [licenses] -unlicensed = "deny" -copyleft = "deny" allow = [ "MIT", "Apache-2.0", @@ -35,9 +33,6 @@ allow = [ "OpenSSL", "CC0-1.0", ] -deny = [] -allow-osi-fsf-free = "neither" -default = "deny" confidence-threshold = 0.8 exceptions = []