From 750b6bca00afef1914a20393b8ecf4a76cf444b7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 30 Jul 2026 16:07:39 +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 | 21 ++++++++++++++++++--- ministr-cli/Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 94425633..14067fe6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4756,7 +4756,7 @@ dependencies = [ "tokio", "tokio-util", "toml 0.8.23", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", ] @@ -6602,7 +6602,7 @@ dependencies = [ "tokio-native-tls", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -6645,7 +6645,7 @@ dependencies = [ "tokio-rustls", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -8712,6 +8712,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.13.1", + "bytes", + "http", + "percent-encoding", + "pin-project-lite", + "tower-layer", + "tower-service", +] + [[package]] name = "tower-layer" version = "0.3.3" diff --git a/ministr-cli/Cargo.toml b/ministr-cli/Cargo.toml index 868d47b4..7d385393 100644 --- a/ministr-cli/Cargo.toml +++ b/ministr-cli/Cargo.toml @@ -69,7 +69,7 @@ futures = "0.3" # (cloud deploys + dev workflows that browse a daemon from # `ministr.ai/demo/bridge`-style pages), the listed origins receive # the `Access-Control-Allow-*` headers. -tower-http = { version = "0.6", features = ["cors"] } +tower-http = { version = "0.7", features = ["cors"] } tracing.workspace = true tracing-subscriber.workspace = true miette.workspace = true