fix(deps): update rust crate tower-http to 0.3.0

This commit is contained in:
Renovate Bot 2022-04-25 14:56:34 +00:00
parent 8e2b4c5635
commit c8efa8c530
No known key found for this signature in database
GPG Key ID: 81C63AE1C224182B
2 changed files with 22 additions and 3 deletions

23
Cargo.lock generated
View File

@ -115,7 +115,7 @@ dependencies = [
"sync_wrapper", "sync_wrapper",
"tokio", "tokio",
"tower", "tower",
"tower-http", "tower-http 0.2.5",
"tower-layer", "tower-layer",
"tower-service", "tower-service",
] ]
@ -631,7 +631,7 @@ dependencies = [
"rust_utilities", "rust_utilities",
"serde", "serde",
"thiserror", "thiserror",
"tower-http", "tower-http 0.3.0",
] ]
[[package]] [[package]]
@ -1696,6 +1696,25 @@ name = "tower-http"
version = "0.2.5" version = "0.2.5"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "aba3f3efabf7fb41fae8534fc20a817013dd1c12cb45441efb6c82e6556b4cd8" 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 = [ dependencies = [
"async-compression", "async-compression",
"base64", "base64",

View File

@ -8,7 +8,7 @@ axum = "0.5.3"
log = "0.4.16" log = "0.4.16"
thiserror = "1.0.30" thiserror = "1.0.30"
serde = { version = "1.0.136", features = ["derive"] } serde = { version = "1.0.136", features = ["derive"] }
tower-http = { version = "0.2.5", features = ["full"] } tower-http = { version = "0.3.0", features = ["full"] }
hyper = { version = "0.14.18", features = ["full"] } hyper = { version = "0.14.18", features = ["full"] }
rust_utilities = { version = "0.2.0", features = ["jsonwebtoken"] } rust_utilities = { version = "0.2.0", features = ["jsonwebtoken"] }
homedisk-database = { path = "../database" } homedisk-database = { path = "../database" }