From 399e6a331ba7344d04b8f2cf1b8e1cdd116638b1 Mon Sep 17 00:00:00 2001 From: Ryan McCleary Date: Tue, 20 May 2025 22:53:57 -0400 Subject: [PATCH] updated zip version in Cargo.toml --- Cargo.toml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5bdfdbde..07307ec5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,9 +38,9 @@ log = "0.4" env_logger = "0.11" cfg-if = "1.0" [target.'cfg(target_family = "wasm")'.dependencies] -zip = { version = "2.5", default-features = false, features = ["deflate"] } +zip = { version = "3.0", default-features = false, features = ["deflate"] } [target.'cfg(not(target_family = "wasm"))'.dependencies] -zip = { version = "2.5", default-features = false, features = ["bzip2"] } +zip = { version = "3.0", default-features = false, features = ["bzip2"] } fastrand = { version = "2.3.0" } android_logger = {version = "0.15.0", optional = true} @@ -51,9 +51,9 @@ android_logger = {version = "0.15.0", optional = true} bitflags = "2.5" error-chain = "0.12.4" [target.'cfg(target_family = "wasm")'.build-dependencies] -zip = { version = "2.5", default-features = false, features = ["deflate"] } +zip = { version = "3.0", default-features = false, features = ["deflate"] } [target.'cfg(not(target_family = "wasm"))'.build-dependencies] -zip = { version = "2.5", default-features = false, features = ["bzip2"] } +zip = { version = "3.0", default-features = false, features = ["bzip2"] } [lib] name = "libmathcat"