From 69a5600aa3f14c869f61b640ae488e98e5bd404d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 5 Sep 2026 23:04:11 +0000 Subject: [PATCH] build(deps): bump tower-http from 0.6.11 to 0.7.1 Bumps [tower-http](https://github.com/tower-rs/tower-http) from 0.6.11 to 0.7.1. - [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.1) --- updated-dependencies: - dependency-name: tower-http dependency-version: 0.7.1 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 25 +++++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 22 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 5e80601..29bc9c6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2187,7 +2187,7 @@ dependencies = [ "tokio", "tokio-native-tls", "tower 0.5.3", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -3199,6 +3199,24 @@ name = "tower-http" version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" +dependencies = [ + "bitflags", + "bytes", + "futures-util", + "http", + "http-body", + "pin-project-lite", + "tower 0.5.3", + "tower-layer", + "tower-service", + "url", +] + +[[package]] +name = "tower-http" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "08a05a66a4fdd61cbbe0a1d755ffe0ca6aba159dd4820936a0ff8a8278245b9c" dependencies = [ "bitflags", "bytes", @@ -3206,13 +3224,12 @@ dependencies = [ "http", "http-body", "http-body-util", + "percent-encoding", "pin-project-lite", "tokio", - "tower 0.5.3", "tower-layer", "tower-service", "tracing", - "url", ] [[package]] @@ -3858,7 +3875,7 @@ dependencies = [ "tonic", "tonic-build", "tower 0.5.3", - "tower-http", + "tower-http 0.7.1", "tracing", "tracing-opentelemetry", "tracing-subscriber", diff --git a/Cargo.toml b/Cargo.toml index 5e55996..894d91f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ futures = "0.3" # HTTP axum = { version = "0.8", features = ["macros", "tokio"] } tower = { version = "0.5", features = ["util", "limit", "timeout"] } -tower-http = { version = "0.6", features = ["cors", "trace", "catch-panic", "limit", "timeout"] } +tower-http = { version = "0.7", features = ["cors", "trace", "catch-panic", "limit", "timeout"] } hyper = { version = "1", features = ["full"] } http = "1"