Skip to content

Commit

Permalink
chore: fix deny.toml
Browse files Browse the repository at this point in the history
see EmbarkStudios/cargo-deny#611

Signed-off-by: Harald Hoyer <[email protected]>
  • Loading branch information
haraldh committed Dec 20, 2024
1 parent c5373df commit d11f637
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions deny.toml
Original file line number Diff line number Diff line change
@@ -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,
Expand All @@ -20,8 +20,6 @@ ignore = [
]

[licenses]
unlicensed = "deny"
copyleft = "deny"
allow = [
"MIT",
"Apache-2.0",
Expand All @@ -35,9 +33,6 @@ allow = [
"OpenSSL",
"CC0-1.0",
]
deny = []
allow-osi-fsf-free = "neither"
default = "deny"
confidence-threshold = 0.8
exceptions = []

Expand Down

0 comments on commit d11f637

Please sign in to comment.