From de873fbcf1966cf7e05d2051efb5ef83ceac3a27 Mon Sep 17 00:00:00 2001 From: phoenix Date: Tue, 7 Jul 2026 17:11:54 -0400 Subject: [PATCH] bump: tower-http --- Cargo.lock | 5 +++-- Cargo.toml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4f36601..0d58610 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2202,13 +2202,14 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.6.10" +version = "0.7.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "68d6fdd9f81c2819c9a8b0e0cd91660e7746a8e6ea2ba7c6b2b057985f6bcb51" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" dependencies = [ "bitflags", "bytes", "http", + "percent-encoding", "pin-project-lite", "tower-layer", "tower-service", diff --git a/Cargo.toml b/Cargo.toml index 01820b0..a398a33 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,7 +11,7 @@ serde_json = { version = "1.0.150" } tokio = { version = "1.52.3", features = ["rt-multi-thread"] } tracing-subscriber = { version = "0.3.23" } tower = { version = "0.5.3", features = ["full"] } -tower-http = { version = "0.6.10", features = ["cors"] } +tower-http = { version = "0.7.0", features = ["cors"] } hyper = { version = "1.9.0" } sqlx = { version = "0.8.6", features = ["postgres", "runtime-tokio-native-tls", "time", "uuid"] } uuid = { version = "1.23.1", features = ["v4", "serde"] }