Skip to content

Commit

Permalink
fix(miniz_oxide): Fix version specification for simd-adler32 (#150)
Browse files Browse the repository at this point in the history
The crate requires simd-adler32 in version 0.3.3 at a minimum, as that
is when the simd_adler32::Adler32::from_checksum constructor was
introduced. Fix the version specification accordingly.

Signed-off-by: Daniel Müller <deso@posteo.net>
  • Loading branch information
d-e-s-o committed Apr 8, 2024
1 parent 79307d7 commit 35c71e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion miniz_oxide/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ name = "miniz_oxide"

[dependencies]
adler = { version = "1.0", default-features = false }
simd-adler32 = { version = "0.3", default-features = false, optional = true }
simd-adler32 = { version = "0.3.3", default-features = false, optional = true }

# Internal feature, only used when building as part of libstd, not part of the
# stable interface of this crate.
Expand Down

0 comments on commit 35c71e1

Please sign in to comment.