From 3175b8cebefefba26e13c06530f595ddcd719858 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Mon, 15 Jun 2026 14:30:41 +0000 Subject: [PATCH] Update Rust crate tower-http to 0.7.0 --- Cargo.lock | 28 +++++++++++++++++++++++----- Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 6 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index ada4623e..27c2c9d8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -400,7 +400,7 @@ dependencies = [ "tokio", "toml", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "tracing-test", @@ -1883,7 +1883,7 @@ dependencies = [ "snafu", "tokio", "tower", - "tower-http", + "tower-http 0.6.8", "tracing", "url", "web-time", @@ -2356,7 +2356,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.8", "tower-service", "url", "wasm-bindgen", @@ -3370,6 +3370,25 @@ name = "tower-http" version = "0.6.8" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" +dependencies = [ + "bitflags", + "bytes", + "futures-util", + "http", + "http-body", + "iri-string", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", + "tracing", +] + +[[package]] +name = "tower-http" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" dependencies = [ "async-compression", "bitflags", @@ -3379,11 +3398,10 @@ dependencies = [ "http", "http-body", "http-body-util", - "iri-string", + "percent-encoding", "pin-project-lite", "tokio", "tokio-util", - "tower", "tower-layer", "tower-service", "tracing", diff --git a/Cargo.toml b/Cargo.toml index 5fb56822..2ebd0d03 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -38,7 +38,7 @@ axum = { version = "0.8", features = ["http2"] } axum-embed = "0.1" rust-embed = "8" tower = { version = "0.5", features = ["limit"] } -tower-http = { version = "0.6.4", features = ["catch-panic", "compression-br", "compression-gzip"] } +tower-http = { version = "0.7.0", features = ["catch-panic", "compression-br", "compression-gzip"] } jsonwebtoken = "10" url = "2" reqwest = { version = "0.12", features = ["json", "rustls-tls"], default-features = false }