From a900d58a6ed0f772c5d92d8c26fbc88a3d085df4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 21 Jun 2026 06:52:37 +0000 Subject: [PATCH] chore(deps): bump tower-http from 0.6.11 to 0.7.0 in /bots/rhodibot 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] --- bots/rhodibot/Cargo.lock | 22 +++++++++++++++++++--- bots/rhodibot/Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/bots/rhodibot/Cargo.lock b/bots/rhodibot/Cargo.lock index ecfac8ba..f28ac8bc 100644 --- a/bots/rhodibot/Cargo.lock +++ b/bots/rhodibot/Cargo.lock @@ -2513,7 +2513,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -2545,7 +2545,7 @@ dependencies = [ "tokio-test", "toml", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "wiremock", @@ -3077,10 +3077,26 @@ 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 2.11.1", + "bytes", + "http", + "http-body", + "percent-encoding", + "pin-project-lite", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "tower-layer" version = "0.3.3" diff --git a/bots/rhodibot/Cargo.toml b/bots/rhodibot/Cargo.toml index 384f42c0..f8e70d7e 100644 --- a/bots/rhodibot/Cargo.toml +++ b/bots/rhodibot/Cargo.toml @@ -20,7 +20,7 @@ tokio = { version = "1.52.3", features = ["full"] } # Web framework axum = "0.8.9" tower = "0.5.3" -tower-http = { version = "0.6.11", features = ["trace", "cors"] } +tower-http = { version = "0.7.0", features = ["trace", "cors"] } # HTTP client reqwest = { version = "0.12.28", features = ["json", "rustls-tls"], default-features = false }