From 56c3335755a427c9e2d1a44f114e7d1af59130f0 Mon Sep 17 00:00:00 2001 From: Bastian Kersting Date: Thu, 21 Mar 2024 19:38:44 +0100 Subject: [PATCH] deps: Bump tokio --- socketio/Cargo.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/socketio/Cargo.toml b/socketio/Cargo.toml index 6948520d..aef63cf1 100644 --- a/socketio/Cargo.toml +++ b/socketio/Cargo.toml @@ -21,7 +21,7 @@ serde_json = "1.0" thiserror = "1.0" native-tls = "0.2.11" url = "2.4.1" -tokio = { version = "1.16.1", optional = true } +tokio = { version = "1.36.0", optional = true } futures-util = { version = "0.3", default-features = false, features = ["sink"], optional = true } async-stream = { version = "0.3.5", optional = true } log = "0.4.20" @@ -31,9 +31,9 @@ serde = "1.0.193" cargo-tarpaulin = "0.18.5" [dev-dependencies.tokio] -version = "1.16.1" +version = "1.36.0" # we need the `#[tokio::test]` macro -features = ["macros"] +features = ["macros", "rt-multi-thread"] [features] default = []