From d42444f4536d26e9adef0660a4b831d06fcf542f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 8 Jun 2026 09:12:44 +0000 Subject: [PATCH] chore(deps)(deps): bump tower-http from 0.5.2 to 0.6.11 Bumps [tower-http](https://github.com/tower-rs/tower-http) from 0.5.2 to 0.6.11. - [Release notes](https://github.com/tower-rs/tower-http/releases) - [Commits](https://github.com/tower-rs/tower-http/compare/tower-http-0.5.2...tower-http-0.6.11) --- updated-dependencies: - dependency-name: tower-http dependency-version: 0.6.11 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 25 ++++--------------------- crates/terraphim_validation/Cargo.toml | 2 +- terraphim_server/Cargo.toml | 2 +- 3 files changed, 6 insertions(+), 23 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8758c3199..02809588d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -6056,7 +6056,7 @@ dependencies = [ "tokio-rustls 0.26.4", "tokio-util", "tower", - "tower-http 0.6.11", + "tower-http", "tower-service", "url", "wasm-bindgen", @@ -6100,7 +6100,7 @@ dependencies = [ "tokio-rustls 0.26.4", "tokio-util", "tower", - "tower-http 0.6.11", + "tower-http", "tower-service", "url", "wasm-bindgen", @@ -8788,7 +8788,7 @@ dependencies = [ "terraphim_settings", "terraphim_types", "tokio", - "tower-http 0.6.11", + "tower-http", "ulid", "urlencoding", "uuid", @@ -9047,7 +9047,7 @@ dependencies = [ "tokio-test", "toml 0.8.23", "tower", - "tower-http 0.5.2", + "tower-http", "urlencoding", "uuid", "winapi", @@ -9461,23 +9461,6 @@ dependencies = [ "tracing", ] -[[package]] -name = "tower-http" -version = "0.5.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "1e9cd434a998747dd2c4276bc96ee2e0c7a2eadf3cae88e52be55a05fa9053f5" -dependencies = [ - "bitflags 2.12.1", - "bytes", - "http", - "http-body", - "http-body-util", - "pin-project-lite", - "tower-layer", - "tower-service", - "tracing", -] - [[package]] name = "tower-http" version = "0.6.11" diff --git a/crates/terraphim_validation/Cargo.toml b/crates/terraphim_validation/Cargo.toml index 91e6895c0..7283bc9e1 100644 --- a/crates/terraphim_validation/Cargo.toml +++ b/crates/terraphim_validation/Cargo.toml @@ -39,7 +39,7 @@ env_logger = "0.11" # HTTP and networking axum = "0.7" tower = "0.5" -tower-http = { version = "0.5", features = ["cors", "trace"] } +tower-http = { version = "0.6", features = ["cors", "trace"] } # Security and validation sha2 = "0.10" diff --git a/terraphim_server/Cargo.toml b/terraphim_server/Cargo.toml index b48a1c2e0..4d005ebde 100644 --- a/terraphim_server/Cargo.toml +++ b/terraphim_server/Cargo.toml @@ -31,7 +31,7 @@ portpicker = "0.1" serde = { workspace = true } serde_json = { workspace = true } tokio = { workspace = true } -tower-http = { version = "0.6.8", features = ["cors", "fs", "trace"] } +tower-http = { version = "0.6.11", features = ["cors", "fs", "trace"] } ulid = { version = "1.0.0", features = ["serde", "uuid"] } mime_guess = "2.0.4" rust-embed = { version = "8.2.0", features = ["axum", "axum-ex", "mime-guess"], optional = true }