diff --git a/Cargo.lock b/Cargo.lock index ac371c433..558f7560d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1614,16 +1614,6 @@ version = "2.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" -[[package]] -name = "iri-string" -version = "0.7.12" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "25e659a4bb38e810ebc252e53b5814ff908a8c58c2a9ce2fae1bbec24cbf4e20" -dependencies = [ - "memchr", - "serde", -] - [[package]] name = "is_terminal_polyfill" version = "1.70.2" @@ -2543,7 +2533,7 @@ dependencies = [ "tokio-rustls", "tokio-util", "tower", - "tower-http", + "tower-http 0.6.11", "tower-service", "url", "wasm-bindgen", @@ -3161,7 +3151,7 @@ dependencies = [ "tokio", "tokio-stream", "tower", - "tower-http", + "tower-http 0.7.0", "uuid", "walkdir", ] @@ -3385,9 +3375,27 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.6.8" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" +dependencies = [ + "bitflags", + "bytes", + "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 = "d4e6559d53cc268e5031cd8429d05415bc4cb4aefc4aa5d6cc35fbf5b924a1f8" +checksum = "b11f75e912b0c2be01b63d8cf8057b8c3f97cf34abb3d431a3a4c8675498e233" dependencies = [ "bitflags", "bytes", @@ -3398,17 +3406,14 @@ dependencies = [ "http-body-util", "http-range-header", "httpdate", - "iri-string", "mime", "mime_guess", "percent-encoding", "pin-project-lite", "tokio", "tokio-util", - "tower", "tower-layer", "tower-service", - "tracing", ] [[package]] diff --git a/bootstrap/Cargo.toml b/bootstrap/Cargo.toml index b3ca43809..65f6c7099 100644 --- a/bootstrap/Cargo.toml +++ b/bootstrap/Cargo.toml @@ -20,7 +20,7 @@ clap = { version = "4", features = ["derive"] } walkdir = "2" reqwest = { version = "0.13", features = ["json", "blocking", "stream"] } colored = "2" -tower-http = { version = "0.6", features = ["fs"] } +tower-http = { version = "0.7", features = ["fs"] } tokio-stream = { version = "0.1", features = ["sync", "time"] } futures-util = "0.3" uuid = { version = "1", features = ["v4", "serde"] }