Explorar el Código

refactor(core): disable default features for the zip crate (#3624)

Lucas Fernandes Nogueira hace 3 años
padre
commit
5293445f08
Se han modificado 2 ficheros con 6 adiciones y 1 borrados
  1. 5 0
      .changes/refactor-zip-features.md
  2. 1 1
      core/tauri/Cargo.toml

+ 5 - 0
.changes/refactor-zip-features.md

@@ -0,0 +1,5 @@
+---
+"tauri": patch
+---
+
+Disabled the default features for the `zip` crate.

+ 1 - 1
core/tauri/Cargo.toml

@@ -62,7 +62,7 @@ serde_repr = "0.1"
 state = "0.5"
 state = "0.5"
 tar = "0.4"
 tar = "0.4"
 tempfile = "3"
 tempfile = "3"
-zip = { version = "0.5", optional = true }
+zip = { version = "0.5", default-features = false, optional = true }
 ignore = "0.4"
 ignore = "0.4"
 either = "1.6"
 either = "1.6"
 flate2 = "1.0"
 flate2 = "1.0"