From e88e5a804fa7ebafc525e5ea3dc014347c6e682b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 16 Jun 2026 11:46:26 +0000 Subject: [PATCH] build(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 | 24 ++++++++++++++++++++---- dsm_storage_node/Cargo.toml | 2 +- 2 files changed, 21 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8e354107..f609b07d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1482,7 +1482,7 @@ dependencies = [ "tokio-rustls", "toml 1.1.2+spec-1.1.0", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-log", "tracing-subscriber", @@ -4070,7 +4070,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -5154,14 +5154,30 @@ dependencies = [ "futures-util", "http", "http-body", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", + "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.0", + "bytes", + "http", + "http-body", "http-body-util", + "percent-encoding", "pin-project-lite", "tokio", - "tower", "tower-layer", "tower-service", "tracing", - "url", ] [[package]] diff --git a/dsm_storage_node/Cargo.toml b/dsm_storage_node/Cargo.toml index 939ea9e1..a94f1ca8 100644 --- a/dsm_storage_node/Cargo.toml +++ b/dsm_storage_node/Cargo.toml @@ -22,7 +22,7 @@ tokio-rustls = "0.26" # `from_pem_reader`, etc.) on `rustls::pki_types::CertificateDer` and friends. rustls-pki-types = { version = "1", features = ["alloc"] } tower = { version = "0.5", features = ["limit", "timeout"] } -tower-http = { version = "0.6", features = ["trace", "set-header", "limit", "metrics"] } +tower-http = { version = "0.7", features = ["trace", "set-header", "limit", "metrics"] } # Error handling thiserror = "2.0.18"