diff --git a/Cargo.lock b/Cargo.lock index fd207810565b..bec40a31c6c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4843,7 +4843,7 @@ dependencies = [ "tokio-stream", "tokio-util", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-appender", "tracing-futures", @@ -5061,7 +5061,7 @@ dependencies = [ "tokio-tungstenite 0.29.0", "tokio-util", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "url", @@ -8841,7 +8841,7 @@ dependencies = [ "tokio-native-tls", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -8892,7 +8892,7 @@ dependencies = [ "tokio-rustls", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -11860,6 +11860,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 d99948f88557..8798bda6bd31 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"] }