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