diff --git a/Cargo.lock b/Cargo.lock index 55220ae1..049bc6bb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2201,9 +2201,9 @@ checksum = "cda74da7e1a664f795bb1f8a87ec406fb89a02522cf6e50620d016add6dbbf5c" [[package]] name = "tokio" -version = "1.36.0" +version = "1.37.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61285f6515fa018fb2d1e46eb21223fff441ee8db5d0f1435e8ab4f5cdb80931" +checksum = "1adbebffeca75fcfd058afa480fb6c0b81e165a0323f9c9d39c9697e37c46787" dependencies = [ "backtrace", "bytes", diff --git a/engineio/Cargo.toml b/engineio/Cargo.toml index 13ae54d0..f955b580 100644 --- a/engineio/Cargo.toml +++ b/engineio/Cargo.toml @@ -23,7 +23,7 @@ serde_json = "1.0" http = "1.1.0" tokio-tungstenite = { version = "0.21.0", features = ["native-tls"] } tungstenite = "0.21.0" -tokio = "1.36.0" +tokio = "1.37.0" futures-util = { version = "0.3", default-features = false, features = ["sink"] } async-trait = "0.1.80" async-stream = "0.3.5" @@ -36,7 +36,7 @@ criterion = { version = "0.5.1", features = ["async_tokio"] } lazy_static = "1.4.0" [dev-dependencies.tokio] -version = "1.36.0" +version = "1.37.0" # we need the `#[tokio::test]` macro features = ["macros"] diff --git a/socketio/Cargo.toml b/socketio/Cargo.toml index b5f39645..47ed0f20 100644 --- a/socketio/Cargo.toml +++ b/socketio/Cargo.toml @@ -24,7 +24,7 @@ serde_json = "1.0" thiserror = "1.0" native-tls = "0.2.11" url = "2.4.1" -tokio = { version = "1.36.0", optional = true } +tokio = { version = "1.37.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.21" @@ -35,7 +35,7 @@ cargo-tarpaulin = "0.18.5" serial_test = "3.0.0" [dev-dependencies.tokio] -version = "1.36.0" +version = "1.37.0" # we need the `#[tokio::test]` macro features = ["macros", "rt-multi-thread"]