From a1b44b3fbec51316ab60af49d6cb57f4a21857ac Mon Sep 17 00:00:00 2001 From: auyer Date: Tue, 19 Nov 2024 01:59:48 +0000 Subject: [PATCH] bump version to 0.8.5 re-bumps tokio to 1.41 (I applied a bad stash in the last version bump) Signed-off-by: auyer --- libprotonup/Cargo.toml | 11 ++++++----- protonup-rs/Cargo.toml | 4 ++-- 2 files changed, 8 insertions(+), 7 deletions(-) diff --git a/libprotonup/Cargo.toml b/libprotonup/Cargo.toml index 1274125..578809a 100644 --- a/libprotonup/Cargo.toml +++ b/libprotonup/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "libprotonup" -version = "0.8.4" +version = "0.8.5" edition = "2021" authors = ["Auyer "] repository = "https://github.com/auyer/protonup-rs" @@ -12,7 +12,6 @@ description = "Library for Custom Proton Download and installation" [dependencies] arcstr = "1.2" anyhow = "1.0" -async-compression = { version = "0.4", features = ['gzip', 'xz', 'tokio'] } dirs = "5.0" futures-util = "0.3" hex = "0.4" @@ -27,10 +26,12 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" sha2 = "0.10" structopt = "0.3" -tokio = { version = "1.39", features = ["macros"] } +tokio = { version = "1.41", features = ["macros"] } tokio-stream = { version = "0.1", features = ["fs"] } -tokio-tar = "0.3" tokio-util = "0.7" +# decompression +tokio-tar = "0.3" +async-compression = { version = "0.4", features = ['gzip', 'xz', 'tokio'] } [dev-dependencies] -tokio = { version = "1.39", features = ["macros", "rt"] } +tokio = { version = "1.41", features = ["macros", "rt"] } diff --git a/protonup-rs/Cargo.toml b/protonup-rs/Cargo.toml index 595a9c6..1f72e59 100644 --- a/protonup-rs/Cargo.toml +++ b/protonup-rs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "protonup-rs" -version = "0.8.4" +version = "0.8.5" edition = "2021" authors = ["Auyer "] repository = "https://github.com/auyer/protonup-rs" @@ -26,7 +26,7 @@ assets = [ anyhow = "1.0" arcstr = "1.2" futures-util = "0.3" -libprotonup = { path = "../libprotonup", version = "0.8.4" } +libprotonup = { path = "../libprotonup", version = "0.8.5" } inquire = { version = "0.7", default-features = false, features = ["termion"] } indicatif = { version = "0.17", features = [ "improved_unicode",