diff --git a/Cargo.lock b/Cargo.lock index a72559263..669c59663 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -2509,7 +2509,7 @@ dependencies = [ "tokio-util", "toml", "tower", - "tower-http", + "tower-http 0.7.0", "tracing", "tracing-futures", "url", @@ -6235,7 +6235,7 @@ dependencies = [ "tokio-rustls", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -7715,6 +7715,28 @@ source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" dependencies = [ "async-compression", + "bitflags 2.13.0", + "bytes", + "futures-core", + "futures-util", + "http 1.4.2", + "http-body 1.0.1", + "http-body-util", + "pin-project-lite", + "tokio", + "tokio-util", + "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", "futures-core", @@ -7730,11 +7752,9 @@ dependencies = [ "pin-project-lite", "tokio", "tokio-util", - "tower", "tower-layer", "tower-service", "tracing", - "url", ] [[package]] diff --git a/crates/bin/docs_rs_web/Cargo.toml b/crates/bin/docs_rs_web/Cargo.toml index 25e1f74ad..f2d3d86fb 100644 --- a/crates/bin/docs_rs_web/Cargo.toml +++ b/crates/bin/docs_rs_web/Cargo.toml @@ -66,7 +66,7 @@ tokio = { workspace = true } tokio-util = { version = "0.7.15", default-features = false, features = ["io"] } toml = { workspace = true } tower = "0.5.1" -tower-http = { version = "0.6.0", features = ["catch-panic", "fs", "timeout", "trace"] } +tower-http = { version = "0.7.0", features = ["catch-panic", "fs", "timeout", "trace"] } tracing = { workspace = true } tracing-futures = { version = "0.2.5", features = ["futures-03", "std-future"] } url = { workspace = true }