From 9a8cdf549c0407021f22c51a0112b9489a3c39d2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 Jul 2026 02:11:02 +0000 Subject: [PATCH] chore(deps): bump tower-http from 0.6.11 to 0.7.0 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] --- Cargo.lock | 24 +++++++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 734070d..0af0836 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3863,7 +3863,7 @@ dependencies = [ "tokio-stream", "tokio-util", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "url", @@ -4173,7 +4173,7 @@ dependencies = [ "nom 7.1.3", "once_cell", "postcard", - "quick-xml 0.40.1", + "quick-xml 0.41.0", "regex", "regex-cache", "serde", @@ -4829,7 +4829,7 @@ dependencies = [ "tokio-rustls", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -6169,6 +6169,24 @@ name = "tower-http" version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" +dependencies = [ + "bitflags 2.13.0", + "bytes", + "futures-util", + "http", + "http-body", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", + "url", +] + +[[package]] +name = "tower-http" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" dependencies = [ "async-compression", "base64", diff --git a/Cargo.toml b/Cargo.toml index 6d820d5..316c468 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -71,7 +71,7 @@ axum-server = { version = "0.8", features = ["tls-rustls"] } axum-extra = { version = "0.12", features = [] } axum-test = { version = "20.1", features = [] } tower = { version = "0.5", features = ["full"] } -tower-http = { version = "0.6", features = ["full"] } +tower-http = { version = "0.7", features = ["full"] } # OpenAPI/Documentation aide = { version = "0.16.0-alpha.4", features = ["axum", "macros", "scalar"] }