From 47e4991ae286922671a4d79778c58d9c4f38c7d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 03:05:24 +0000 Subject: [PATCH] build(deps): bump tower-http from 0.6.11 to 0.7.0 in the axum group Bumps the axum group with 1 update: [tower-http](https://github.com/tower-rs/tower-http). Updates `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 dependency-group: axum ... Signed-off-by: dependabot[bot] --- Cargo.lock | 29 +++++++++++++++++++++++++---- Cargo.toml | 2 +- 2 files changed, 26 insertions(+), 5 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index e6119c7..4abeae8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -77,7 +77,7 @@ dependencies = [ "thiserror 1.0.69", "tokio", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "uuid", @@ -1785,7 +1785,7 @@ dependencies = [ "once_cell", "socket2", "tracing", - "windows-sys 0.52.0", + "windows-sys 0.59.0", ] [[package]] @@ -1973,7 +1973,7 @@ dependencies = [ "tokio-rustls", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -2806,8 +2806,29 @@ 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 = [ + "async-compression", + "bitflags", + "bytes", + "futures-core", + "http", + "http-body", + "http-body-util", + "percent-encoding", + "pin-project-lite", + "tokio", + "tokio-util", + "tower-layer", + "tower-service", + "tracing", "uuid", ] diff --git a/Cargo.toml b/Cargo.toml index adc92ba..3d9803b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -19,7 +19,7 @@ tokio = { version = "1", features = ["rt-multi-thread","macros","signal","time"] axum = { version = "0.8", features = ["macros","json","tokio"] } hyper = { version = "1", features = ["full"] } tower = { version = "0.5", features = ["util","limit"] } -tower-http = { version = "0.6", features = ["trace","cors","request-id","limit","compression-br", "compression-gzip", "set-header"] } +tower-http = { version = "0.7", features = ["trace","cors","request-id","limit","compression-br", "compression-gzip", "set-header"] } # Serde / Config serde = { version = "1", features = ["derive"] }