diff --git a/Cargo.lock b/Cargo.lock index 4f65145..4bc9cc4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2510,7 +2510,7 @@ dependencies = [ "tokio-tungstenite", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tracing", ] @@ -3242,7 +3242,7 @@ dependencies = [ "tokio", "tokio-postgres", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "uuid", @@ -3683,7 +3683,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -4815,6 +4815,23 @@ dependencies = [ "url", ] +[[package]] +name = "tower-http" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" +dependencies = [ + "bitflags 2.11.0", + "bytes", + "http", + "http-body", + "percent-encoding", + "pin-project-lite", + "tower-layer", + "tower-service", + "tracing", +] + [[package]] name = "tower-layer" version = "0.3.3" diff --git a/Cargo.toml b/Cargo.toml index 9a30e07..e352a11 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -32,7 +32,7 @@ socket2 = "0.6.2" thiserror = "2.0.18" tokio = { version = "1.50.0", features = ["full"] } tokio-postgres = "0.7.18" -tower-http = { version = "0.6.11", features = ["trace"] } +tower-http = { version = "0.7.0", features = ["trace"] } tracing = "0.1.44" tracing-subscriber = { version = "0.3.23", features = ["json", "env-filter"] } uuid = { version = "1.23.4", features = ["v4", "serde"] }