diff --git a/Cargo.lock b/Cargo.lock index 81098d7e0..6d6dc822d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1409,7 +1409,7 @@ dependencies = [ "tar", "thiserror", "tokio", - "tokio-tungstenite 0.23.1", + "tokio-tungstenite 0.24.0", "toml 0.8.15", "tracing", "tracing-subscriber", @@ -1548,7 +1548,7 @@ dependencies = [ "thiserror", "time", "tokio", - "tokio-tungstenite 0.23.1", + "tokio-tungstenite 0.24.0", "toml 0.8.15", "tower-http", "tracing", @@ -4748,6 +4748,18 @@ dependencies = [ "tungstenite 0.23.0", ] +[[package]] +name = "tokio-tungstenite" +version = "0.24.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9" +dependencies = [ + "futures-util", + "log", + "tokio", + "tungstenite 0.24.0", +] + [[package]] name = "tokio-util" version = "0.7.11" @@ -5048,6 +5060,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 1.1.0", + "httparse", + "log", + "rand", + "sha1", + "thiserror", + "utf-8", +] + [[package]] name = "typenum" version = "1.17.0" diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml index 339fb2f23..b7ac77725 100644 --- a/crates/core/Cargo.toml +++ b/crates/core/Cargo.toml @@ -57,7 +57,7 @@ tar = { version = "0.4" } time = "0.3" thiserror = "1" tokio = { features = ["fs", "macros", "rt-multi-thread", "sync", "process"], version = "1" } -tokio-tungstenite = "0.23" +tokio-tungstenite = "0.24" tower-http = { features = ["fs", "trace"], version = "0.5" } ulid = { features = ["serde"], version = "1.1" } unsigned-varint = { version = "0.8", features = ["codec", "asynchronous_codec"] } diff --git a/crates/fdev/Cargo.toml b/crates/fdev/Cargo.toml index c089b44eb..bf2e8c577 100644 --- a/crates/fdev/Cargo.toml +++ b/crates/fdev/Cargo.toml @@ -28,7 +28,7 @@ semver = { workspace = true } tar = "0.4" thiserror = "1" tokio = { version = "1", features = ["rt-multi-thread", "sync", "macros", "signal", "parking_lot", "process"] } -tokio-tungstenite = "0.23" +tokio-tungstenite = "0.24" toml = { version = "0.8", features = ["default", "preserve_order"] } tracing = { workspace = true } tracing-subscriber = { workspace = true, features = ["env-filter", "fmt"] }