diff --git a/Cargo.lock b/Cargo.lock index c080bec0a..24cffd554 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -355,7 +355,7 @@ dependencies = [ "sha1", "sync_wrapper 1.0.1", "tokio", - "tokio-tungstenite", + "tokio-tungstenite 0.23.1", "tower 0.5.1", "tower-layer", "tower-service", @@ -1278,7 +1278,7 @@ dependencies = [ "tar", "thiserror", "tokio", - "tokio-tungstenite", + "tokio-tungstenite 0.24.0", "toml", "tracing", "tracing-subscriber", @@ -1407,7 +1407,7 @@ dependencies = [ "thiserror", "time", "tokio", - "tokio-tungstenite", + "tokio-tungstenite 0.24.0", "toml", "tower-http", "tracing", @@ -1452,7 +1452,7 @@ dependencies = [ "serde_with", "thiserror", "tokio", - "tokio-tungstenite", + "tokio-tungstenite 0.23.1", "tracing", "tracing-subscriber", "wasm-bindgen", @@ -4479,7 +4479,19 @@ dependencies = [ "futures-util", "log", "tokio", - "tungstenite", + "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]] @@ -4757,6 +4769,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 f6d208bd4..fbe0dea8c 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.6" } 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 c6566ca0e..4761d64b3 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"] }