Skip to content

Commit cc74ff8

Browse files
committed
fix: avoid app crash by disabling async_zip full feature #198
Signed-off-by: The1111mp <The1111mp@outlook.com>
1 parent 26164db commit cc74ff8

2 files changed

Lines changed: 7 additions & 91 deletions

File tree

src-tauri/Cargo.lock

Lines changed: 0 additions & 89 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src-tauri/crates/get-node/Cargo.toml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,13 @@ edition = "2021"
55

66
[dependencies]
77
anyhow = "1.0"
8-
async-compression = { version = "0.4", features = ["tokio", "gzip"] }
9-
async_zip = { version = "0.0.17", features = ["full"] }
8+
async-compression = { version = "0.4", default-features = false, features = [
9+
"tokio",
10+
"gzip",
11+
] }
12+
async_zip = { version = "0.0.17", default-features = false, features = [
13+
"deflate",
14+
] }
1015
cfg-if = "1"
1116
futures-lite = "2"
1217
futures-util = "0.3"

0 commit comments

Comments
 (0)