From 9a8c3267b79436481f73072f2f82d342f915316c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 13:55:09 +0000 Subject: [PATCH] chore(deps)(deps): bump tower-http Bumps the rust-all group in /vault-broker with 1 update: [tower-http](https://github.com/tower-rs/tower-http). Updates `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 dependency-group: rust-all ... Signed-off-by: dependabot[bot] --- vault-broker/Cargo.lock | 5 +++-- vault-broker/Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/vault-broker/Cargo.lock b/vault-broker/Cargo.lock index d4710ba..98adb0a 100644 --- a/vault-broker/Cargo.lock +++ b/vault-broker/Cargo.lock @@ -817,14 +817,15 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.6.11" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" dependencies = [ "bitflags", "bytes", "http", "http-body", + "percent-encoding", "pin-project-lite", "tower-layer", "tower-service", diff --git a/vault-broker/Cargo.toml b/vault-broker/Cargo.toml index 8a47d1f..a248898 100644 --- a/vault-broker/Cargo.toml +++ b/vault-broker/Cargo.toml @@ -16,7 +16,7 @@ path = "src/main.rs" axum = { version = "0.8", features = ["macros"] } tokio = { version = "1", features = ["full"] } tower = "0.5" -tower-http = { version = "0.6", features = ["trace"] } +tower-http = { version = "0.7", features = ["trace"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" uuid = { version = "1.23", features = ["v4"] }