diff --git a/Cargo.lock b/Cargo.lock index 4e486e848..a8aa97ce9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -675,7 +675,7 @@ dependencies = [ "sha1", "sync_wrapper 1.0.1", "tokio", - "tokio-tungstenite", + "tokio-tungstenite 0.24.0", "tower 0.5.1", "tower-layer", "tower-service", @@ -2644,7 +2644,7 @@ dependencies = [ "synedrion", "thiserror 2.0.7", "tokio", - "tokio-tungstenite", + "tokio-tungstenite 0.26.0", "tracing", "wasm-bindgen", "wasm-bindgen-derive", @@ -2860,7 +2860,7 @@ dependencies = [ "tdx-quote", "thiserror 2.0.7", "tokio", - "tokio-tungstenite", + "tokio-tungstenite 0.26.0", "tower-http 0.6.2", "tracing", "tracing-bunyan-formatter", @@ -14562,7 +14562,19 @@ dependencies = [ "futures-util", "log", "tokio", - "tungstenite", + "tungstenite 0.24.0", +] + +[[package]] +name = "tokio-tungstenite" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5c14b3e8ebea4eb2577de77903e6c008d9ac80b5aae1f9ae781c5229ae935a44" +dependencies = [ + "futures-util", + "log", + "tokio", + "tungstenite 0.26.0", ] [[package]] @@ -15026,6 +15038,24 @@ dependencies = [ "utf-8", ] +[[package]] +name = "tungstenite" +version = "0.26.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d4ab519cc9c1e57e6cab1087f262f9fc978a4e9d5f943b0e029567521d3525cb" +dependencies = [ + "byteorder", + "bytes", + "data-encoding", + "http 1.1.0", + "httparse", + "log", + "rand", + "sha1", + "thiserror 2.0.7", + "utf-8", +] + [[package]] name = "twox-hash" version = "1.6.3" diff --git a/crates/protocol/Cargo.toml b/crates/protocol/Cargo.toml index f82dd3b84..fca8b7d57 100644 --- a/crates/protocol/Cargo.toml +++ b/crates/protocol/Cargo.toml @@ -35,7 +35,7 @@ num ="0.4.3" # Used only with the `server` feature to implement the WsConnection trait axum ={ version="0.7.9", features=["ws"], optional=true } -tokio-tungstenite={ version="0.24.0", optional=true } +tokio-tungstenite={ version="0.26.0", optional=true } # Used only with the `wasm` feature gloo-net ={ version="0.6.0", default-features=false, features=["websocket"], optional=true } diff --git a/crates/threshold-signature-server/Cargo.toml b/crates/threshold-signature-server/Cargo.toml index 2356aae20..1051db827 100644 --- a/crates/threshold-signature-server/Cargo.toml +++ b/crates/threshold-signature-server/Cargo.toml @@ -57,7 +57,7 @@ tracing-bunyan-formatter="0.3.10" uuid ={ version="1.11.0", features=["v4"] } # Misc -tokio-tungstenite="0.24.0" +tokio-tungstenite="0.26.0" bincode ="1.3.3" bip32 ={ version="0.5.2" } bip39 ={ version="2.1.0", features=["zeroize"] }