From 335d096f3ec738abb94fa8360a15c76d7a12403f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Jul 2024 15:08:49 +0000 Subject: [PATCH] Update tokio-tungstenite requirement from 0.20 to 0.23 Updates the requirements on [tokio-tungstenite](https://github.com/snapview/tokio-tungstenite) to permit the latest version. - [Changelog](https://github.com/snapview/tokio-tungstenite/blob/master/CHANGELOG.md) - [Commits](https://github.com/snapview/tokio-tungstenite/commits) --- updated-dependencies: - dependency-name: tokio-tungstenite dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 55adf4e..0a32b46 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -21,14 +21,14 @@ test = ["tokio-tungstenite/connect"] futures = {version = "0.3", default-features = false, features = ["async-await", "std"]} tokio = {version = "1.8", default-features = false, features = ["rt", "time"]} tracing = {version = "0.1", default-features = false, features = ["std"]} -tokio-tungstenite = {version = "0.20", default-features = false} +tokio-tungstenite = {version = "0.23", default-features = false} [dev-dependencies] rand = {version = "0.8", default-features = false, features = ["std", "std_rng"]} serde = {version = "1.0", features = ["derive"]} test-log = {version = "0.2.8", default-features = false, features = ["trace"]} tokio = {version = "1.8", default-features = false, features = ["rt", "macros", "net", "test-util"]} -tokio-tungstenite = {version = "0.20", default-features = false, features = ["connect"]} +tokio-tungstenite = {version = "0.23", default-features = false, features = ["connect"]} tracing-subscriber = {version = "0.3", default-features = false, features = ["ansi", "env-filter", "fmt", "local-time"]} url = "2.0"