From f70510e506b7f48eb095dd778fb6f9761ad31235 Mon Sep 17 00:00:00 2001 From: phoenix Date: Sat, 4 Jul 2026 18:27:24 -0400 Subject: [PATCH] bump: tower-http --- Cargo.lock | 22 +++++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 20 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 3469604..57eeab1 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2149,7 +2149,7 @@ dependencies = [ "tokio-rustls", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -3143,7 +3143,7 @@ dependencies = [ "time", "tokio", "tower", - "tower-http", + "tower-http 0.7.0", "tracing-subscriber", "url", "utoipa", @@ -3345,13 +3345,29 @@ dependencies = [ "http", "http-body", "pin-project-lite", - "tokio", "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", + "bytes", + "http", + "http-body", + "percent-encoding", + "pin-project-lite", + "tokio", + "tower-layer", + "tower-service", +] + [[package]] name = "tower-layer" version = "0.3.3" diff --git a/Cargo.toml b/Cargo.toml index b23e81e..8581daa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -10,7 +10,7 @@ axum-extra = { version = "0.12.6", features = ["cookie"] } serde = { version = "1.0.228", features = ["derive"] } serde_json = { version = "1.0.150" } tokio = { version = "1.52.3", features = ["full"] } -tower-http = { version = "0.6.11", features = ["cors", "timeout"] } +tower-http = { version = "0.7.0", features = ["cors", "timeout"] } tracing-subscriber = "0.3.23" uuid = { version = "1.23.3", features = ["v4", "serde"] } sqlx = { version = "0.9.0", features = ["runtime-tokio", "tls-native-tls", "postgres", "time", "uuid"] }