From d6de23bb5f48b9f3f9f360ff17dbd6c6d317e0a6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 20 Jun 2026 19:03:53 +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 | 21 ++++++++++++++++++--- zilliqa/Cargo.toml | 2 +- 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3c3776a9f..a77747ea9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7683,7 +7683,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower 0.5.3", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -7724,7 +7724,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower 0.5.3", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -9843,6 +9843,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.2", + "percent-encoding", + "pin-project-lite", + "tower-layer", + "tower-service", +] + [[package]] name = "tower-layer" version = "0.3.3" @@ -11548,7 +11563,7 @@ dependencies = [ "tokio-util", "toml", "tower 0.5.3", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber 0.3.23", "vergen-git2", diff --git a/zilliqa/Cargo.toml b/zilliqa/Cargo.toml index a0494f74b..f1de0fd2d 100644 --- a/zilliqa/Cargo.toml +++ b/zilliqa/Cargo.toml @@ -82,7 +82,7 @@ tokio = { version = "1.52.3", features = [ tokio-stream = "0.1.18" toml = "1.1.2" tower = "0.5.3" -tower-http = { version = "0.6.11", features = ["cors"] } +tower-http = { version = "0.7.0", features = ["cors"] } tracing = "0.1.44" tracing-subscriber = { version = "0.3.23", features = ["env-filter", "json"] } cbor4ii = { version = "1.2.2", features = ["serde1"] }