Skip to content

Commit

Permalink
Merge pull request #1928 from fintelia/fix-deny2
Browse files Browse the repository at this point in the history
Fix some cargo deny errors/warnings
  • Loading branch information
fintelia authored May 14, 2023
2 parents c41c7d3 + 8038496 commit d5b8bdf
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ crc32fast = "1.2.0"
num-complex = "0.4"
glob = "0.3"
quickcheck = "1"
criterion = "0.3"
criterion = "0.4"
# Keep this in sync with the jpeg dependency above. This is used to enable the platform_independent
# feature when testing, so `cargo test` works correctly.
jpeg = { package = "jpeg-decoder", version = "0.3.0", default-features = false, features = ["platform_independent"] }
Expand Down
4 changes: 3 additions & 1 deletion deny.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,13 @@ multiple-versions = "deny"
wildcards = "allow" # at least until https://github.com/EmbarkStudios/cargo-deny/issues/241 is fixed
deny = []
skip = [
{ name = "windows-sys" }, # console and terminal_size both depend on an old version
{ name = "miniz_oxide" }, # exr crate uses an old version
]
skip-tree = [
{ name = "windows-sys" }, # console and terminal_size both depend on an old version
{ name = "criterion" }, # dev-dependency
{ name = "quickcheck" }, # dev-dependency
{ name = "dav1d" }, # TODO: needs upgrade
]


Expand Down

0 comments on commit d5b8bdf

Please sign in to comment.