From 246b5c218659aec089bb5140b91e83ffd07ec348 Mon Sep 17 00:00:00 2001 From: DPlayer234 Date: Mon, 18 Nov 2024 16:55:41 +0100 Subject: [PATCH] Update `tokio-tungstenite` dependency to 0.24 This avoids indirectly pulling in multiple versions of `rustls`. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 72232954bac..80af6c7f675 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ fxhash = { version = "0.2.1", optional = true } chrono = { version = "0.4.31", default-features = false, features = ["clock", "serde"], optional = true } flate2 = { version = "1.0.28", optional = true } reqwest = { version = "0.12.2", default-features = false, features = ["multipart", "stream", "json"], optional = true } -tokio-tungstenite = { version = "0.21.0", optional = true } +tokio-tungstenite = { version = "0.24.0", features = ["url"], optional = true } percent-encoding = { version = "2.3.0", optional = true } mini-moka = { version = "0.10.2", optional = true } mime_guess = { version = "2.0.4", optional = true }