From 5c8b925cf533687a263dfe717d9e48998d256bd7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jun 2026 01:24:52 +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 | 26 +++++++++++++++++++++----- Cargo.toml | 2 +- bin/sentrix-faucet/Cargo.toml | 2 +- crates/sentrix-rpc/Cargo.toml | 2 +- 4 files changed, 24 insertions(+), 8 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 72b483af..ee329902 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4602,7 +4602,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -5218,7 +5218,7 @@ dependencies = [ "thiserror 2.0.18", "tokio", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "uuid", "zeroize", @@ -5318,7 +5318,7 @@ dependencies = [ "serde", "serde_json", "tokio", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber 0.3.23", ] @@ -5484,7 +5484,7 @@ dependencies = [ "subtle", "tokio", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", ] @@ -6327,10 +6327,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", + "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/Cargo.toml b/Cargo.toml index c92fce0f..515ee3b2 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -78,7 +78,7 @@ libp2p = { version = "0.56", features = ["tcp", "noise", "yamux", "gossipsub", " # API axum = "0.8" tower = { version = "0.5", features = ["limit"] } -tower-http = { version = "0.6", features = ["cors"] } +tower-http = { version = "0.7", features = ["cors"] } # EVM revm = { version = "40", default-features = false, features = ["std", "serde", "optional_balance_check", "optional_no_base_fee"] } diff --git a/bin/sentrix-faucet/Cargo.toml b/bin/sentrix-faucet/Cargo.toml index df27ce88..fa664b5b 100644 --- a/bin/sentrix-faucet/Cargo.toml +++ b/bin/sentrix-faucet/Cargo.toml @@ -18,7 +18,7 @@ reliakit-ratelimit = "0.1" axum = "0.8" tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal"] } -tower-http = { version = "0.6", features = ["cors", "trace"] } +tower-http = { version = "0.7", features = ["cors", "trace"] } serde = { version = "1", features = ["derive"] } serde_json = "1" clap = { version = "4", features = ["derive", "env"] } diff --git a/crates/sentrix-rpc/Cargo.toml b/crates/sentrix-rpc/Cargo.toml index a8d34577..469f7e2a 100644 --- a/crates/sentrix-rpc/Cargo.toml +++ b/crates/sentrix-rpc/Cargo.toml @@ -21,7 +21,7 @@ axum = { version = "0.8", features = ["ws"] } futures-util = "0.3" tokio = { version = "1.52", features = ["full"] } tower = { version = "0.5", features = ["limit"] } -tower-http = { version = "0.6", features = ["cors"] } +tower-http = { version = "0.7", features = ["cors"] } serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" hex = "0.4"