Skip to content

Commit

Permalink
Fix cargo deny warnings and errors
Browse files Browse the repository at this point in the history
  • Loading branch information
JamyGolden committed Sep 23, 2024
1 parent 40940d2 commit 31321f3
Showing 1 changed file with 13 additions and 15 deletions.
28 changes: 13 additions & 15 deletions deny.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# https://embarkstudios.github.io/cargo-deny/

[graph]
targets = [
{ triple = "aarch64-apple-darwin" },
{ triple = "aarch64-linux-android" },
Expand All @@ -10,9 +11,18 @@ targets = [
]


[licenses]
confidence-threshold = 0.93
allow = [
"Apache-2.0",
"MIT",
"BSD-2-Clause",
"BSD-3-Clause",
"Unicode-DFS-2016",
]


[advisories]
vulnerability = "deny"
unmaintained = "warn"
yanked = "deny"
ignore = []

Expand All @@ -22,17 +32,5 @@ multiple-versions = "deny"
wildcards = "allow" # at least until https://github.com/EmbarkStudios/cargo-deny/issues/241 is fixed
deny = []
skip = [
{ name = "num-derive" } # ravif transatively depends on 0.3 and 0.4.
{ name = "miniz_oxide" } # Some deps depend on 0.7.4 while others on 0.8.0
]
skip-tree = [
{ name = "criterion" }, # dev-dependency
{ name = "quickcheck" }, # dev-dependency
{ name = "dav1d" }, # TODO: needs upgrade
{ name = "clap" },
]


[licenses]
unlicensed = "allow"
allow-osi-fsf-free = "either"
copyleft = "allow"

0 comments on commit 31321f3

Please sign in to comment.