From caa12b53a11729ebdc5663ad657240ec3fa59adc Mon Sep 17 00:00:00 2001 From: pashokitsme Date: Tue, 5 Sep 2023 18:24:53 +0300 Subject: [PATCH] fix(updater): use zip flate2 feature #591 --- plugins/updater/Cargo.toml | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/plugins/updater/Cargo.toml b/plugins/updater/Cargo.toml index 6c7578d3..a6b55c6d 100644 --- a/plugins/updater/Cargo.toml +++ b/plugins/updater/Cargo.toml @@ -26,16 +26,12 @@ percent-encoding = "2" semver = { version = "1", features = [ "serde" ] } futures-util = "0.3" tempfile = "3" -zip = "0.6" +zip = { version = "0.6", features = [ "flate2" ] } tar = "0.4" [target."cfg(target_os = \"windows\")".dependencies] zip = { version = "0.6", default-features = false } -[target."cfg(target_os = \"macos\")".dependencies] -flate2 = "1.0.27" - - [dev-dependencies] mockito = "0.31"