diff --git a/Cargo.lock b/Cargo.lock index acef84cc5cc..6fdbc94d94f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -4319,7 +4319,7 @@ dependencies = [ "test-store", "thiserror 2.0.18", "tokio", - "tower-http", + "tower-http 0.7.0", ] [[package]] @@ -6991,7 +6991,7 @@ dependencies = [ "tokio-rustls", "tokio-util", "tower 0.5.2", - "tower-http", + "tower-http 0.6.11", "tower-service 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "url", "wasm-bindgen", @@ -7029,7 +7029,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower 0.5.2", - "tower-http", + "tower-http 0.6.11", "tower-service 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", "url", "wasm-bindgen", @@ -8710,6 +8710,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.1", + "percent-encoding", + "pin-project-lite", + "tower-layer 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", + "tower-service 0.3.3 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "tower-layer" version = "0.3.3" diff --git a/Cargo.toml b/Cargo.toml index fe5b7d92a04..9a5516c6587 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -111,7 +111,7 @@ tokio-retry = "0.3.0" tonic = { version = "0.14", features = ["tls-native-roots", "gzip"] } tonic-prost = "0.14" tonic-prost-build = "0.14" -tower-http = { version = "0.6.11", features = ["cors"] } +tower-http = { version = "0.7.0", features = ["cors"] } tower = { version = "0.5.1", features = ["full"] } wasmparser = "0.118.1" wasmtime = { version = "44.0.1", features = ["async"] }