From 4b4a823ce897baf629ae9570d50479259c072590 Mon Sep 17 00:00:00 2001 From: pashokitsme Date: Tue, 5 Sep 2023 18:37:49 +0300 Subject: [PATCH] Revert "fix(updater): use zip flate2 feature #591" This reverts commit caa12b53a11729ebdc5663ad657240ec3fa59adc. --- plugins/updater/Cargo.toml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/plugins/updater/Cargo.toml b/plugins/updater/Cargo.toml index a6b55c6d..6c7578d3 100644 --- a/plugins/updater/Cargo.toml +++ b/plugins/updater/Cargo.toml @@ -26,12 +26,16 @@ percent-encoding = "2" semver = { version = "1", features = [ "serde" ] } futures-util = "0.3" tempfile = "3" -zip = { version = "0.6", features = [ "flate2" ] } +zip = "0.6" 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"