diff --git a/Cargo.lock b/Cargo.lock index 644f77b4a..4f4eb54c4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -647,9 +647,9 @@ checksum = "f1fdabc7756949593fe60f30ec81974b613357de856987752631dea1e3394c80" [[package]] name = "axum" -version = "0.8.1" +version = "0.8.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6d6fd624c75e18b3b4c6b9caf42b1afe24437daaee904069137d8bab077be8b8" +checksum = "efea76243612a2436fb4074ba0cf3ba9ea29efdeb72645d8fc63f116462be1de" dependencies = [ "axum-core", "base64 0.22.1", @@ -684,12 +684,12 @@ dependencies = [ [[package]] name = "axum-core" -version = "0.5.0" +version = "0.5.1" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "df1362f362fd16024ae199c1970ce98f9661bf5ef94b9808fee734bc3698b733" +checksum = "eab1b0df7cded837c40dacaa2e1c33aa17c84fc3356ae67b5645f1e83190753e" dependencies = [ "bytes", - "futures-util", + "futures-core", "http 1.1.0", "http-body 1.0.0", "http-body-util", diff --git a/crates/protocol/Cargo.toml b/crates/protocol/Cargo.toml index 43ef6d545..ab0439bad 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.8.1", features=["ws"], optional=true } +axum ={ version="0.8.2", features=["ws"], optional=true } tokio-tungstenite={ version="0.26.1", optional=true } # Used only with the `wasm` feature diff --git a/crates/testing-utils/Cargo.toml b/crates/testing-utils/Cargo.toml index c2753a229..2afea0914 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.43", features=["macros", "fs", "rt-multi-thread", "io-util", "process"] } -axum ={ version="0.8.1" } +axum ={ version="0.8.2" } entropy-shared ={ version="0.3.0", path="../shared" } entropy-kvdb ={ version="0.3.0", path="../kvdb", default-features=false } entropy-tss ={ version="0.3.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 17d7fbaa5..f0712ed85 100644 --- a/crates/threshold-signature-server/Cargo.toml +++ b/crates/threshold-signature-server/Cargo.toml @@ -32,7 +32,7 @@ tokio ={ version="1.43", features=["macros", "fs", "rt-multi-thread", "io-util" # HTTP reqwest={ version="0.12.12", features=["json", "stream"] } -axum ={ version="0.8.1", features=["ws"] } +axum ={ version="0.8.2", features=["ws"] } # Substrate subxt ="0.35.3"