From 4f9a896cc2848c0eb29b1be738805b3841e143c0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 4 Jul 2026 23:12:57 +0000 Subject: [PATCH] build(deps): bump tower-http from 0.6.11 to 0.7.0 in /server Bumps [tower-http](https://github.com/tower-rs/tower-http) from 0.6.11 to 0.7.0. - [Release notes](https://github.com/tower-rs/tower-http/releases) - [Commits](https://github.com/tower-rs/tower-http/compare/tower-http-0.6.11...tower-http-0.7.0) --- updated-dependencies: - dependency-name: tower-http dependency-version: 0.7.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- server/Cargo.lock | 23 ++++++++++++++++++++--- server/Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 4 deletions(-) diff --git a/server/Cargo.lock b/server/Cargo.lock index 3afa847..b06f3de 100644 --- a/server/Cargo.lock +++ b/server/Cargo.lock @@ -2262,7 +2262,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -2508,7 +2508,7 @@ dependencies = [ "tokio", "tokio-stream", "tokio-util", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "url", @@ -3180,10 +3180,27 @@ dependencies = [ "tower", "tower-layer", "tower-service", - "tracing", "url", ] +[[package]] +name = "tower-http" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" +dependencies = [ + "bitflags", + "bytes", + "http 1.4.2", + "http-body", + "http-body-util", + "percent-encoding", + "pin-project-lite", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "tower-layer" version = "0.3.3" diff --git a/server/Cargo.toml b/server/Cargo.toml index 948ac1c..1757a51 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" axum = { version = "0.8", features = ["ws", "macros", "multipart"] } axum-extra = { version = "0.12", features = ["typed-header"] } tokio = { version = "1", features = ["full"] } -tower-http = { version = "0.6", features = ["cors", "trace", "limit"] } +tower-http = { version = "0.7", features = ["cors", "trace", "limit"] } serde = { version = "1", features = ["derive"] } serde_json = "1" # default-features = false drops the MySQL/Postgres backends (and the transitive `rsa`