Compare commits

..

No commits in common. "ee9fb0d7360c29e3ba688eca8d0e7cf8e499ad5b" and "5170aeb601748e10e0c35b41cd95baf8e6039f02" have entirely different histories.

2 changed files with 4 additions and 22 deletions

24
Cargo.lock generated
View File

@ -80,7 +80,7 @@ dependencies = [
"sync_wrapper",
"tokio",
"tower",
"tower-http 0.2.5",
"tower-http",
"tower-layer",
"tower-service",
]
@ -842,7 +842,7 @@ dependencies = [
"tar",
"tokio",
"tokio-util",
"tower-http 0.3.0",
"tower-http",
"tracing",
"tracing-subscriber",
"uuid",
@ -999,25 +999,6 @@ 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",
@ -1034,6 +1015,7 @@ dependencies = [
"pin-project-lite",
"tokio",
"tokio-util",
"tower",
"tower-layer",
"tower-service",
"tracing",

View File

@ -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.3.0", features = ["fs", "trace", "auth"] }
tower-http = { version = "0.2.5", features = ["fs", "trace", "auth"] }
tar = "0.4.38"
flate2 = "1.0.22"
tokio-util = { version = "0.7.1", features = ["io"] }