From 422311fc2829ed57d0ea00c031146634a663942e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 Jul 2026 21:15:01 +0000 Subject: [PATCH] chore(deps): bump tower-http from 0.6.8 to 0.7.0 Bumps [tower-http](https://github.com/tower-rs/tower-http) from 0.6.8 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.8...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 | 39 ++++++++++++++++++++++----------------- Cargo.toml | 2 +- crates/tui/Cargo.toml | 2 +- 3 files changed, 24 insertions(+), 19 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 0a1fe3ecc0..d229708496 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -821,7 +821,7 @@ dependencies = [ "tempfile", "tokio", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "uuid", ] @@ -1047,7 +1047,7 @@ dependencies = [ "tokio-util", "toml 1.1.2+spec-1.1.0", "toml_edit 0.25.12+spec-1.1.0", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "unicode-segmentation", @@ -2744,16 +2744,6 @@ version = "2.11.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "469fb0b9cefa57e3ef31275ee7cacb78f2fdca44e4765491884a2b119d4eb130" -[[package]] -name = "iri-string" -version = "0.7.10" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c91338f0783edbd6195decb37bae672fd3b165faffb89bf7b9e6942f8b1a731a" -dependencies = [ - "memchr", - "serde", -] - [[package]] name = "is-terminal" version = "0.4.17" @@ -4428,7 +4418,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -4471,7 +4461,7 @@ dependencies = [ "tokio-rustls", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -5938,9 +5928,9 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.6.8" +version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" +checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" dependencies = [ "async-compression", "bitflags 2.12.1", @@ -5950,13 +5940,28 @@ dependencies = [ "http", "http-body", "http-body-util", - "iri-string", "pin-project-lite", "tokio", "tokio-util", "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.12.1", + "bytes", + "http", + "percent-encoding", + "pin-project-lite", + "tower-layer", + "tower-service", ] [[package]] diff --git a/Cargo.toml b/Cargo.toml index 288b483213..a58012c260 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -50,7 +50,7 @@ tokio = { version = "1.50.0", features = ["full"] } toml = "1.0.6" toml_edit = "0.25.12" sha2 = "0.11" -tower-http = { version = "0.6", features = ["cors"] } +tower-http = { version = "0.7", features = ["cors"] } tracing = "0.1" tracing-appender = "0.2" tracing-subscriber = { version = "0.3", features = ["env-filter", "fmt"] } diff --git a/crates/tui/Cargo.toml b/crates/tui/Cargo.toml index ece52aac47..83a7da812f 100644 --- a/crates/tui/Cargo.toml +++ b/crates/tui/Cargo.toml @@ -64,7 +64,7 @@ tempfile.workspace = true thiserror = "2.0" tracing = "0.1" tracing-subscriber = { workspace = true } -tower-http = { version = "0.6", features = ["cors"] } +tower-http = { version = "0.7", features = ["cors"] } wait-timeout = "0.2" webbrowser = "1.0" multimap = "0.10.0"