diff --git a/Cargo.lock b/Cargo.lock index d48a154..239d774 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2119,7 +2119,7 @@ dependencies = [ "thiserror 2.0.19", "tokio", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "url", @@ -2237,7 +2237,7 @@ dependencies = [ "thiserror 2.0.19", "tokio", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "tracing-test", @@ -2269,7 +2269,7 @@ dependencies = [ "thiserror 2.0.19", "tokio", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "uuid", @@ -2320,7 +2320,7 @@ dependencies = [ "thiserror 2.0.19", "tokio", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "url", @@ -2424,7 +2424,7 @@ dependencies = [ "thiserror 2.0.19", "tokio", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "uuid", @@ -2520,7 +2520,7 @@ dependencies = [ "thiserror 2.0.19", "tokio", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-subscriber", "uuid", @@ -5116,7 +5116,7 @@ dependencies = [ "tokio-rustls", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -6485,6 +6485,24 @@ name = "tower-http" version = "0.6.11" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" +dependencies = [ + "bitflags 2.13.1", + "bytes", + "futures-util", + "http 1.5.0", + "http-body 1.1.0", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", + "url", +] + +[[package]] +name = "tower-http" +version = "0.7.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" dependencies = [ "async-compression", "bitflags 2.13.1", @@ -6494,14 +6512,13 @@ dependencies = [ "http 1.5.0", "http-body 1.1.0", "http-body-util", + "percent-encoding", "pin-project-lite", "tokio", "tokio-util", - "tower", "tower-layer", "tower-service", "tracing", - "url", "uuid", ] diff --git a/Cargo.toml b/Cargo.toml index 2ccc52e..7594006 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -71,7 +71,7 @@ dpp-rules = { version = "0.16.0", features = ["bundle"] } axum = { version = "0.8", features = ["macros", "multipart"] } tokio = { version = "1", features = ["full"] } tower = "0.5" -tower-http = { version = "0.6", features = ["trace", "cors", "compression-br", "request-id", "catch-panic"] } +tower-http = { version = "0.7", features = ["trace", "cors", "compression-br", "request-id", "catch-panic"] } hyper = { version = "1", features = ["full"] } futures = "0.3"