diff --git a/Cargo.lock b/Cargo.lock index 4a63a66e1..a156db81e 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2595,7 +2595,7 @@ dependencies = [ "synedrion", "thiserror", "tokio", - "tokio-tungstenite 0.23.1", + "tokio-tungstenite 0.24.0", "tracing", "wasm-bindgen", "wasm-bindgen-derive", @@ -2804,7 +2804,7 @@ dependencies = [ "tdx-quote", "thiserror", "tokio", - "tokio-tungstenite 0.23.1", + "tokio-tungstenite 0.24.0", "tower-http 0.5.2", "tracing", "tracing-bunyan-formatter", @@ -14395,14 +14395,14 @@ dependencies = [ [[package]] name = "tokio-tungstenite" -version = "0.23.1" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6989540ced10490aaf14e6bad2e3d33728a2813310a0c71d1574304c49631cd" +checksum = "edc5f74e248dc973e0dbb7b74c7e0d6fcc301c694ff50049504004ef4d0cdcd9" dependencies = [ "futures-util", "log", "tokio", - "tungstenite 0.23.0", + "tungstenite 0.24.0", ] [[package]] @@ -14844,9 +14844,9 @@ dependencies = [ [[package]] name = "tungstenite" -version = "0.23.0" +version = "0.24.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e2e2ce1e47ed2994fd43b04c8f618008d4cabdd5ee34027cf14f9d918edd9c8" +checksum = "18e5b8366ee7a95b16d32197d0b2604b43a0be89dc5fac9f8e96ccafbaedda8a" dependencies = [ "byteorder", "bytes", diff --git a/crates/protocol/Cargo.toml b/crates/protocol/Cargo.toml index e50cd8443..62f092cd6 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.5", features=["ws"], optional=true } -tokio-tungstenite={ version="0.23.1", optional=true } +tokio-tungstenite={ version="0.24.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 7964f8e98..207de0fd3 100644 --- a/crates/threshold-signature-server/Cargo.toml +++ b/crates/threshold-signature-server/Cargo.toml @@ -56,7 +56,7 @@ tracing-bunyan-formatter="0.3.9" uuid ={ version="1.10.0", features=["v4"] } # Misc -tokio-tungstenite="0.23.1" +tokio-tungstenite="0.24.0" bincode="1.3.3" bip32={ version="0.5.2" } bip39={ version="2.0.0", features=["zeroize"] }