diff --git a/Cargo.lock b/Cargo.lock index 3c3776a9f..a77747ea9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -7683,7 +7683,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower 0.5.3", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -7724,7 +7724,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower 0.5.3", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -9843,6 +9843,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" @@ -11548,7 +11563,7 @@ dependencies = [ "tokio-util", "toml", "tower 0.5.3", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber 0.3.23", "vergen-git2", diff --git a/zilliqa/Cargo.toml b/zilliqa/Cargo.toml index a0494f74b..f1de0fd2d 100644 --- a/zilliqa/Cargo.toml +++ b/zilliqa/Cargo.toml @@ -82,7 +82,7 @@ tokio = { version = "1.52.3", features = [ tokio-stream = "0.1.18" toml = "1.1.2" tower = "0.5.3" -tower-http = { version = "0.6.11", features = ["cors"] } +tower-http = { version = "0.7.0", features = ["cors"] } tracing = "0.1.44" tracing-subscriber = { version = "0.3.23", features = ["env-filter", "json"] } cbor4ii = { version = "1.2.2", features = ["serde1"] }