diff --git a/Cargo.lock b/Cargo.lock index b7879aae..67e0bc05 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1762,7 +1762,7 @@ dependencies = [ "thiserror", "tokio", "tokio-tungstenite", - "tungstenite", + "tungstenite 0.24.0", "url", ] @@ -2242,7 +2242,7 @@ dependencies = [ "native-tls", "tokio", "tokio-native-tls", - "tungstenite", + "tungstenite 0.21.0", ] [[package]] @@ -2373,6 +2373,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.14.0" diff --git a/engineio/Cargo.toml b/engineio/Cargo.toml index 6822b2a8..cf0c9383 100644 --- a/engineio/Cargo.toml +++ b/engineio/Cargo.toml @@ -22,7 +22,7 @@ serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" http = "1.1.0" tokio-tungstenite = { version = "0.21.0", features = ["native-tls"] } -tungstenite = "0.21.0" +tungstenite = "0.24.0" tokio = "1.40.0" futures-util = { version = "0.3", default-features = false, features = ["sink"] } async-trait = "0.1.81"