From 998493afeb371347f80ad6b67488e0d5a3661a58 Mon Sep 17 00:00:00 2001 From: Fabian-Lars Date: Sat, 7 Jan 2023 16:05:32 +0100 Subject: [PATCH] Apply suggestions from code review --- plugins/upload/Cargo.toml | 2 +- plugins/websocket/Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/upload/Cargo.toml b/plugins/upload/Cargo.toml index c8ec02ed..26ec517e 100644 --- a/plugins/upload/Cargo.toml +++ b/plugins/upload/Cargo.toml @@ -15,7 +15,7 @@ serde_json.workspace = true tauri.workspace = true log.workspace = true thiserror.workspace = true -tokio = { version = "1.24", features = [ "fs" ] } +tokio = { version = "1", features = [ "fs" ] } tokio-util = { version = "0.7", features = [ "codec" ] } reqwest = { version = "0.11", features = [ "json", "stream" ] } futures = "0.3" diff --git a/plugins/websocket/Cargo.toml b/plugins/websocket/Cargo.toml index e68ed72d..9626668b 100644 --- a/plugins/websocket/Cargo.toml +++ b/plugins/websocket/Cargo.toml @@ -16,5 +16,5 @@ log.workspace = true thiserror.workspace = true rand = "0.8" futures-util = "0.3" -tokio = { version = "1.24", features = ["net", "sync"] } +tokio = { version = "1", features = ["net", "sync"] } tokio-tungstenite = { version = "0.17", features = ["native-tls"] } \ No newline at end of file