From a92764ace2d923d35c64d76868edac8c02d0d699 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 03:06:46 +0000 Subject: [PATCH] chore(deps): update rust crate tower-http to 0.7.0 --- Cargo.lock | 21 ++++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4f2a9c45..c3c11ad0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2559,7 +2559,7 @@ dependencies = [ "tokio", "tokio-test", "tower", - "tower-http", + "tower-http 0.7.0", "tower-test", "tracing", "tracing-subscriber", @@ -4491,7 +4491,7 @@ dependencies = [ "tokio-native-tls", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -4536,7 +4536,7 @@ dependencies = [ "tokio-rustls", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -5822,6 +5822,21 @@ dependencies = [ "url", ] +[[package]] +name = "tower-http" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" +dependencies = [ + "bitflags 2.11.1", + "bytes", + "http 1.4.1", + "percent-encoding", + "pin-project-lite", + "tower-layer", + "tower-service", +] + [[package]] name = "tower-layer" version = "0.3.3" diff --git a/Cargo.toml b/Cargo.toml index 429a27f7..dcc464b0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -66,7 +66,7 @@ tokio = { version = "1.38.0", features = [ "time", ] } tower = "0.5.1" -tower-http = { version = "0.6.1", features = ["cors"] } +tower-http = { version = "0.7.0", features = ["cors"] } tracing = { version = "0.1", default-features = false } tracing-subscriber = { version = "0.3", features = [ "env-filter",