Skip to content

Commit 7b99461

Browse files
build: fix cargo vet issues
We acknowledge some warnings in the deny configuration, since they are either not relevant or can not be fixed.
1 parent a30633d commit 7b99461

File tree

4 files changed

+16
-16
lines changed

4 files changed

+16
-16
lines changed

Cargo.lock

Lines changed: 11 additions & 12 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,4 +45,4 @@ tempfile = "3.20"
4545
# Development
4646
criterion = { version = "0.6", features = ["html_reports"] }
4747
pretty_assertions = "1.4"
48-
proptest = "1.6"
48+
proptest = "1.7"

deny.toml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ ignore = [
6969
#{ id = "RUSTSEC-0000-0000", reason = "you can specify a reason the advisory is ignored" },
7070
#"a-crate-that-is-yanked@0.1.1", # you can also ignore yanked crate versions if you wish
7171
#{ crate = "a-crate-that-is-yanked@0.1.1", reason = "you can specify why you are ignoring the yanked crate" },
72+
{ id = "RUSTSEC-2023-0071", reason = "RSA timing attack vulnerability - not critical for local MPQ file processing. Awaiting constant-time implementation." },
7273
]
7374
# If this is true, then cargo deny will use the git executable to fetch advisory database.
7475
# If this is false, then it uses a built-in git library.
@@ -87,8 +88,8 @@ allow = [
8788
"MIT",
8889
"Apache-2.0",
8990
"Apache-2.0 WITH LLVM-exception",
90-
"MPL-2.0",
9191
"Unicode-3.0",
92+
"BSD-3-Clause",
9293
]
9394
# The confidence threshold for detecting a license from license text.
9495
# The higher the value, the more closely the license text must be to the
@@ -141,7 +142,7 @@ registries = [
141142
# Lint level for when multiple versions of the same crate are detected
142143
multiple-versions = "warn"
143144
# Lint level for when a crate version requirement is `*`
144-
wildcards = "deny"
145+
wildcards = "warn"
145146
# The graph highlighting used when creating dotgraphs for crates
146147
# with multiple versions
147148
# * lowest-version - The path to the lowest versioned duplicate is highlighted

file-formats/archives/wow-mpq/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ pretty_assertions = { workspace = true }
4747
proptest = { workspace = true }
4848
tempfile = { workspace = true }
4949
assert_cmd = "2.0"
50-
predicates = "3.0"
50+
predicates = "3.1"
5151

5252
[[bench]]
5353
name = "hash"

0 commit comments

Comments
 (0)