Skip to content

Commit 517ad87

Browse files
authored
Bump miniz_oxide to 0.9
Also remove special miniz-oxide WASM dependency as it now is the same as the normal dependency, which had its `with_alloc` feature removed. The `with_alloc` feature could be removed because it's a default, which we now rely on. Alternatively one could say that we trust the crate to make non-breaking changes to the feature toggles.
1 parent 9b2eca6 commit 517ad87

1 file changed

Lines changed: 2 additions & 5 deletions

File tree

Cargo.toml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "flate2"
33
authors = ["Alex Crichton <alex@alexcrichton.com>", "Josh Triplett <josh@joshtriplett.org>"]
4-
version = "1.1.9"
4+
version = "1.1.10"
55
edition = "2018"
66
license = "MIT OR Apache-2.0"
77
readme = "README.md"
@@ -25,13 +25,10 @@ libz-ng-sys = { version = "1.1.16", optional = true }
2525
zlib-rs = { version = "0.6.0", optional = true, default-features = false, features = ["std", "rust-allocator"] }
2626
## This implementation uses only safe Rust code and doesn't require a C compiler.
2727
## It provides good performance for most use cases while being completely portable.
28-
miniz_oxide = { version = "0.8.5", optional = true, default-features = false, features = ["with-alloc", "simd"] }
28+
miniz_oxide = { version = "0.9.0", optional = true, features = ["simd"] }
2929
crc32fast = { version = "1.2.0", optional = true }
3030
document-features = { version = "0.2", optional = true }
3131

32-
[target.'cfg(all(target_arch = "wasm32", not(target_os = "emscripten")))'.dependencies]
33-
miniz_oxide = { version = "0.8.5", default-features = false, features = ["with-alloc", "simd"] }
34-
3532
[dev-dependencies]
3633
futures = { version = "0.3", default-features = false }
3734
rand = "0.9"

0 commit comments

Comments
 (0)