From ea2dd466d67519d815c7ce28c13dca5389ad5691 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Sep 2026 02:27:54 +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 | 24 ++++++++++++++++++++---- Cargo.toml | 2 +- crates/librtbit-upnp-serve/Cargo.toml | 2 +- crates/librtbit/Cargo.toml | 2 +- 4 files changed, 23 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 6085501..cf86066 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4969,7 +4969,7 @@ dependencies = [ "tokio-rustls", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -6124,7 +6124,7 @@ dependencies = [ "tokio-test", "tokio-util", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "url", @@ -6352,7 +6352,7 @@ dependencies = [ "swarmforge-upnp", "tokio", "tokio-util", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "url", @@ -7208,10 +7208,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 2.13.0", + "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 4341ca6..54cbb7a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -143,7 +143,7 @@ tokio-socks = "0.5" tokio-stream = "0.1" tokio-test = "0.4" tokio-util = "0.7" -tower-http = "0.6" +tower-http = "0.7" tracing = "0.1" tracing-subscriber = { version = "0.3", default-features = false } url = { version = "2", default-features = false } diff --git a/crates/librtbit-upnp-serve/Cargo.toml b/crates/librtbit-upnp-serve/Cargo.toml index e07fd0c..05ee2fe 100644 --- a/crates/librtbit-upnp-serve/Cargo.toml +++ b/crates/librtbit-upnp-serve/Cargo.toml @@ -39,7 +39,7 @@ rand = "0.10" [dev-dependencies] tracing-subscriber = { version = "0.3", default-features = false, features = ["fmt"] } -tower-http = { version = "0.6", features = ["trace"] } +tower-http = { version = "0.7", features = ["trace"] } [[example]] name = "upnp-stub-server" diff --git a/crates/librtbit/Cargo.toml b/crates/librtbit/Cargo.toml index c44fa60..5e5801d 100644 --- a/crates/librtbit/Cargo.toml +++ b/crates/librtbit/Cargo.toml @@ -80,7 +80,7 @@ tokio = { version = "1", features = ["macros", "rt-multi-thread", "fs", "io-util governor = "0.10" console-subscriber = { version = "0.5", optional = true } axum = { version = "0.8", optional = true, features = ["multipart"] } -tower-http = { version = "0.6", features = ["cors", "trace"], optional = true } +tower-http = { version = "0.7", features = ["cors", "trace"], optional = true } tokio-stream = "0.1" serde = { version = "1", features = ["rc"] } serde_derive = "1"