diff --git a/Cargo.lock b/Cargo.lock index b7e2d384a..5ce7bfb91 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -647,13 +647,13 @@ checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80" [[package]] name = "axum" -version = "0.7.6" +version = "0.7.7" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "8f43644eed690f5374f1af436ecd6aea01cd201f6fbdf0178adaf6907afb2cec" +checksum = "504e3947307ac8326a5437504c517c4b56716c9d98fac0028c2acc7ca47d70ae" dependencies = [ "async-trait", "axum-core", - "base64 0.21.7", + "base64 0.22.1", "bytes", "futures-util", "http 1.1.0", @@ -675,7 +675,7 @@ dependencies = [ "sha1", "sync_wrapper 1.0.1", "tokio", - "tokio-tungstenite 0.23.1", + "tokio-tungstenite", "tower 0.5.1", "tower-layer", "tower-service", @@ -684,9 +684,9 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.4.4" +version = "0.4.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "5e6b8ba012a258d63c9adfa28b9ddcf66149da6f986c5b5452e629d5ee64bf00" +checksum = "09f2bd6146b97ae3359fa0cc6d6b376d9539582c7b4220f041a33ec24c226199" dependencies = [ "async-trait", "bytes", @@ -2601,7 +2601,7 @@ dependencies = [ "synedrion", "thiserror", "tokio", - "tokio-tungstenite 0.24.0", + "tokio-tungstenite", "tracing", "wasm-bindgen", "wasm-bindgen-derive", @@ -2814,7 +2814,7 @@ dependencies = [ "tdx-quote", "thiserror", "tokio", - "tokio-tungstenite 0.24.0", + "tokio-tungstenite", "tower-http 0.6.1", "tracing", "tracing-bunyan-formatter", @@ -14392,18 +14392,6 @@ dependencies = [ "tokio-util", ] -[[package]] -name = "tokio-tungstenite" -version = "0.23.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c6989540ced10490aaf14e6bad2e3d33728a2813310a0c71d1574304c49631cd" -dependencies = [ - "futures-util", - "log", - "tokio", - "tungstenite 0.23.0", -] - [[package]] name = "tokio-tungstenite" version = "0.24.0" @@ -14413,7 +14401,7 @@ dependencies = [ "futures-util", "log", "tokio", - "tungstenite 0.24.0", + "tungstenite", ] [[package]] @@ -14849,24 +14837,6 @@ version = "1.0.9" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f4f195fd851901624eee5a58c4bb2b4f06399148fcd0ed336e6f1cb60a9881df" -[[package]] -name = "tungstenite" -version = "0.23.0" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6e2e2ce1e47ed2994fd43b04c8f618008d4cabdd5ee34027cf14f9d918edd9c8" -dependencies = [ - "byteorder", - "bytes", - "data-encoding", - "http 1.1.0", - "httparse", - "log", - "rand", - "sha1", - "thiserror", - "utf-8", -] - [[package]] name = "tungstenite" version = "0.24.0" diff --git a/crates/protocol/Cargo.toml b/crates/protocol/Cargo.toml index 0b9adbcc0..7f7417f7c 100644 --- a/crates/protocol/Cargo.toml +++ b/crates/protocol/Cargo.toml @@ -34,7 +34,7 @@ hpke-rs-rust-crypto="0.2.0" num ="0.4.3" # Used only with the `server` feature to implement the WsConnection trait -axum ={ version="0.7.6", features=["ws"], optional=true } +axum ={ version="0.7.7", features=["ws"], optional=true } tokio-tungstenite={ version="0.24.0", optional=true } # Used only with the `wasm` feature diff --git a/crates/testing-utils/Cargo.toml b/crates/testing-utils/Cargo.toml index 686c14f39..ad5e50a74 100644 --- a/crates/testing-utils/Cargo.toml +++ b/crates/testing-utils/Cargo.toml @@ -17,7 +17,7 @@ parity-scale-codec="3.6.12" lazy_static ="1.5.0" hex-literal ="0.4.1" tokio ={ version="1.40", features=["macros", "fs", "rt-multi-thread", "io-util", "process"] } -axum ={ version="0.7.5" } +axum ={ version="0.7.7" } entropy-shared ={ version="0.2.0", path="../shared" } entropy-kvdb ={ version="0.2.0", path="../kvdb", default-features=false } entropy-tss ={ version="0.2.0", path="../threshold-signature-server", features=["test_helpers"] } diff --git a/crates/threshold-signature-server/Cargo.toml b/crates/threshold-signature-server/Cargo.toml index e8f20d734..2b5629d32 100644 --- a/crates/threshold-signature-server/Cargo.toml +++ b/crates/threshold-signature-server/Cargo.toml @@ -32,7 +32,7 @@ tokio ={ version="1.40", features=["macros", "fs", "rt-multi-thread", "io-util" # HTTP reqwest={ version="0.12.7", features=["json", "stream"] } -axum ={ version="0.7.6", features=["ws"] } +axum ={ version="0.7.7", features=["ws"] } # Substrate subxt ="0.35.3"