From ecb0b6d533d4837ebc547942fc00cd3903a2b289 Mon Sep 17 00:00:00 2001 From: joeoc2001 Date: Tue, 22 Oct 2024 08:36:18 +0100 Subject: [PATCH] Update tungstenite and async-tungstenite --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5ee0277..1bdcf05 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -31,9 +31,9 @@ serde = { version = "1.0", default-features = false, optional = true } serde_json = { version = "1.0", default-features = false, optional = true, features = ["alloc"] } [target.'cfg(not(target_arch = "wasm32"))'.dependencies] -async-tungstenite = { version = "0.27", default-features = false } +async-tungstenite = { version = "0.28", default-features = false } tokio-util = { version = "0.7", default-features = false, features = ["compat"] } -tungstenite = { version = "0.23", default-features = false, features = ["handshake"] } +tungstenite = { version = "0.24", default-features = false, features = ["handshake"] } [target.'cfg(target_arch = "wasm32")'.dependencies] web-sys = { version = "0.3", features = ["WebSocket", "CloseEvent", "ErrorEvent", "Event", "MessageEvent", "BinaryType"] }