From ce6a29135734fa80f0f68160765c10bc740ffaa1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 28 Jun 2026 13:25:36 +0000 Subject: [PATCH] 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, 21 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f72dcda..bc230ef 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -911,7 +911,7 @@ dependencies = [ "thiserror", "tokio", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", ] @@ -1316,7 +1316,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -1860,14 +1860,30 @@ dependencies = [ "http", "http-body", "pin-project-lite", - "tokio", "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", + "http-body", + "percent-encoding", + "pin-project-lite", + "tokio", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "tower-layer" version = "0.3.3" diff --git a/Cargo.toml b/Cargo.toml index d1ea220..56bcd43 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -29,7 +29,7 @@ sqlx-postgres = { version = "=0.8.6", features = ["json"] } thiserror = "2" tokio = { version = "1", features = ["macros", "rt-multi-thread", "sync"] } tower = { version = "0.5", optional = true, features = ["limit"] } -tower-http = { version = "0.6", optional = true, features = ["timeout", "trace"] } +tower-http = { version = "0.7", optional = true, features = ["timeout", "trace"] } tracing = { version = "0.1", optional = true } tracing-subscriber = { version = "0.3", optional = true, features = ["env-filter"] }