diff --git a/Cargo.lock b/Cargo.lock index 8e354107..f609b07d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1482,7 +1482,7 @@ dependencies = [ "tokio-rustls", "toml 1.1.2+spec-1.1.0", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-log", "tracing-subscriber", @@ -4070,7 +4070,7 @@ dependencies = [ "tokio", "tokio-rustls", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -5154,14 +5154,30 @@ dependencies = [ "futures-util", "http", "http-body", + "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 = [ + "bitflags 2.13.0", + "bytes", + "http", + "http-body", "http-body-util", + "percent-encoding", "pin-project-lite", "tokio", - "tower", "tower-layer", "tower-service", "tracing", - "url", ] [[package]] diff --git a/dsm_storage_node/Cargo.toml b/dsm_storage_node/Cargo.toml index 939ea9e1..a94f1ca8 100644 --- a/dsm_storage_node/Cargo.toml +++ b/dsm_storage_node/Cargo.toml @@ -22,7 +22,7 @@ tokio-rustls = "0.26" # `from_pem_reader`, etc.) on `rustls::pki_types::CertificateDer` and friends. rustls-pki-types = { version = "1", features = ["alloc"] } tower = { version = "0.5", features = ["limit", "timeout"] } -tower-http = { version = "0.6", features = ["trace", "set-header", "limit", "metrics"] } +tower-http = { version = "0.7", features = ["trace", "set-header", "limit", "metrics"] } # Error handling thiserror = "2.0.18"