From efd8b175c804907afe0649167c61a1dfee355dfe Mon Sep 17 00:00:00 2001 From: Emile Fugulin Date: Thu, 24 Oct 2024 17:32:01 -0400 Subject: [PATCH] Update tungstenite --- Cargo.lock | 20 +++++++++++++++++++- Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f43a1d5..2819c4b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1067,7 +1067,7 @@ dependencies = [ "thiserror", "tokio", "tokio-stream", - "tungstenite 0.23.0", + "tungstenite 0.24.0", "ws_stream_wasm", ] @@ -2218,6 +2218,24 @@ dependencies = [ "utf-8", ] +[[package]] +name = "tungstenite" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a" +dependencies = [ + "byteorder", + "bytes", + "data-encoding", + "http", + "httparse", + "log", + "rand", + "sha1", + "thiserror", + "utf-8", +] + [[package]] name = "typenum" version = "1.17.0" diff --git a/Cargo.toml b/Cargo.toml index c064303..e3d9e39 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -45,7 +45,7 @@ serde_json = "1.0" thiserror = "1.0" cynic = { version = "3", optional = true } -tungstenite = { version = "0.23", optional = true } +tungstenite = { version = ">=0.23, <=0.24", optional = true } graphql_client = { version = "0.14.0", optional = true } ws_stream_wasm = { version = "0.7", optional = true }