From cc5ed7f817cc5e5712b2bb924ed19cab4f389a47 Mon Sep 17 00:00:00 2001 From: Paolo Barbolini Date: Tue, 6 Sep 2022 17:28:46 +0200 Subject: [PATCH] Bump miniz_oxide to 0.6 (#317) --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index fdb2eb4c..43c6eb9e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,11 +20,11 @@ and raw deflate streams. libz-sys = { version = "1.1.8", optional = true, default-features = false } libz-ng-sys = { version = "1.1.8", optional = true } cloudflare-zlib-sys = { version = "0.3.0", optional = true } -miniz_oxide = { version = "0.5.0", optional = true, default-features = false } +miniz_oxide = { version = "0.6.0", optional = true, default-features = false, features = ["with-alloc"] } crc32fast = "1.2.0" [target.'cfg(all(target_arch = "wasm32", not(target_os = "emscripten")))'.dependencies] -miniz_oxide = { version = "0.5.0", default-features = false } +miniz_oxide = { version = "0.6.0", default-features = false, features = ["with-alloc"] } [dev-dependencies] rand = "0.8"