diff --git a/Cargo.lock b/Cargo.lock index 231098a..67861e9 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -80,7 +80,7 @@ dependencies = [ "sync_wrapper", "tokio", "tower", - "tower-http", + "tower-http 0.2.5", "tower-layer", "tower-service", ] @@ -842,7 +842,7 @@ dependencies = [ "tar", "tokio", "tokio-util", - "tower-http", + "tower-http 0.3.0", "tracing", "tracing-subscriber", "uuid", @@ -999,6 +999,25 @@ name = "tower-http" version = "0.2.5" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "aba3f3efabf7fb41fae8534fc20a817013dd1c12cb45441efb6c82e6556b4cd8" +dependencies = [ + "bitflags", + "bytes", + "futures-core", + "futures-util", + "http", + "http-body", + "http-range-header", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-http" +version = "0.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "79dd37121c38240c4b4fe6520332406218bbf876f2f690fe9e406020189366fd" dependencies = [ "base64", "bitflags", @@ -1015,7 +1034,6 @@ dependencies = [ "pin-project-lite", "tokio", "tokio-util", - "tower", "tower-layer", "tower-service", "tracing", diff --git a/Cargo.toml b/Cargo.toml index 0808eb0..d153e8b 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -16,7 +16,7 @@ hyper = { version = "0.14.18" } tokio = { version = "1.18.0", features = ["full"] } tracing = "0.1.32" tracing-subscriber = {version = "0.3.10", features = ["env-filter"] } -tower-http = { version = "0.2.5", features = ["fs", "trace", "auth"] } +tower-http = { version = "0.3.0", features = ["fs", "trace", "auth"] } tar = "0.4.38" flate2 = "1.0.22" tokio-util = { version = "0.7.1", features = ["io"] }