chore: fix deny.toml

see https://github.com/EmbarkStudios/cargo-deny/pull/611

Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
This commit is contained in:
Harald Hoyer 2024-12-20 15:32:55 +01:00
parent c5373dfd8f
commit d11f63701f
Signed by: harald
GPG key ID: F519A1143B3FBE32

View file

@ -1,15 +1,15 @@
[graph]
targets = [] targets = []
all-features = false all-features = false
no-default-features = false no-default-features = false
[output]
feature-depth = 1 feature-depth = 1
[advisories] [advisories]
db-path = "~/.cargo/advisory-db" db-path = "~/.cargo/advisory-db"
db-urls = ["https://github.com/rustsec/advisory-db"] db-urls = ["https://github.com/rustsec/advisory-db"]
vulnerability = "deny"
unmaintained = "warn"
yanked = "warn" yanked = "warn"
notice = "warn"
ignore = [ ignore = [
# Sidechannel attack to get the private key https://rustsec.org/advisories/RUSTSEC-2023-0071 # Sidechannel attack to get the private key https://rustsec.org/advisories/RUSTSEC-2023-0071
# currently no rsa private key is used in the codebase, # currently no rsa private key is used in the codebase,
@ -20,8 +20,6 @@ ignore = [
] ]
[licenses] [licenses]
unlicensed = "deny"
copyleft = "deny"
allow = [ allow = [
"MIT", "MIT",
"Apache-2.0", "Apache-2.0",
@ -35,9 +33,6 @@ allow = [
"OpenSSL", "OpenSSL",
"CC0-1.0", "CC0-1.0",
] ]
deny = []
allow-osi-fsf-free = "neither"
default = "deny"
confidence-threshold = 0.8 confidence-threshold = 0.8
exceptions = [] exceptions = []