diff --git a/Cargo.lock b/Cargo.lock index be1005440..f8dfc0c39 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4859,7 +4859,7 @@ dependencies = [ "tokio-stream", "tokio-util", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-appender", "tracing-futures", @@ -5077,7 +5077,7 @@ dependencies = [ "tokio-tungstenite 0.29.0", "tokio-util", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "url", @@ -8867,7 +8867,7 @@ dependencies = [ "tokio-native-tls", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -8918,7 +8918,7 @@ dependencies = [ "tokio-rustls", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -11951,6 +11951,21 @@ 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.1", + "bytes", + "http 1.4.2", + "percent-encoding", + "pin-project-lite", + "tower-layer", + "tower-service", +] + [[package]] name = "tower-layer" version = "0.3.3" diff --git a/Cargo.toml b/Cargo.toml index d99948f88..8798bda6b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -62,7 +62,7 @@ thiserror = { version = "2.0.18", default-features = false } tokio = { version = "1.48", default-features = false } tokio-stream = { version = "0.1.16", default-features = false } tokio-util = { version = "0.7.12", default-features = false } -tower-http = { version = "0.6.8", default-features = false } +tower-http = { version = "0.7.0", default-features = false } tracing = { version = "0.1.43", default-features = false, features = ["std"] } tracing-appender = { version = "0.2.1", default-features = false } tracing-futures = { version = "0.2.4", default-features = false, features = ["futures-03", "std", "std-future"] }