From 1ccf11bb90faa42446095b11962b08d35ed4654f Mon Sep 17 00:00:00 2001 From: Sheldon Young Date: Thu, 2 Feb 2023 10:49:43 -0800 Subject: [PATCH] Bump miniz-oxide to prevent assertion failure --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index aa9a4fc7..6ae89e3f 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.6.0", optional = true, default-features = false, features = ["with-alloc"] } +miniz_oxide = { version = "0.7.1", 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.6.0", default-features = false, features = ["with-alloc"] } +miniz_oxide = { version = "0.7.1", default-features = false, features = ["with-alloc"] } [dev-dependencies] rand = "0.8"