From 2921d61ebc9211d4e0bda3f3dadd42d7e63b572a Mon Sep 17 00:00:00 2001 From: binarybaron <86064887+binarybaron@users.noreply.github.com> Date: Mon, 4 Sep 2023 14:05:03 +0200 Subject: [PATCH] Downgrade tokio to 1.21.0 again where signals on windows where introduced --- swap/Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/swap/Cargo.toml b/swap/Cargo.toml index 5e920db0..e0a8e902 100644 --- a/swap/Cargo.toml +++ b/swap/Cargo.toml @@ -53,7 +53,7 @@ structopt = "0.3" strum = { version = "0.24", features = [ "derive" ] } thiserror = "1" time = "0.3" -tokio = { version = "1.32.0", features = [ "rt-multi-thread", "time", "macros", "sync", "process", "fs", "net", "signal" ] } +tokio = { version = "1.21.0", features = [ "rt-multi-thread", "time", "macros", "sync", "process", "fs", "net", "signal" ] } tokio-socks = "0.5" tokio-tungstenite = { version = "0.15", features = [ "rustls-tls" ] } tokio-util = { version = "0.7", features = [ "io", "codec" ] }