From 8fadbce35aba74b8f694acd97c16e7dba3cd831f Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Fri, 29 Apr 2022 13:39:41 +0000 Subject: [PATCH] fix(deps): update rust crate tower-http to 0.3.2 --- Cargo.lock | 4 ++-- server/Cargo.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 8ce1e1d..88534e4 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1684,9 +1684,9 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.3.1" +version = "0.3.2" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f7755f984aa46a9d50829dc84b6a674b2f3b8b4de47c0708923953b090d48acc" +checksum = "e980386f06883cf4d0578d6c9178c81f68b45d77d00f2c2c1bc034b3439c2c56" dependencies = [ "async-compression", "base64", diff --git a/server/Cargo.toml b/server/Cargo.toml index 006b390..c875076 100644 --- a/server/Cargo.toml +++ b/server/Cargo.toml @@ -8,7 +8,7 @@ axum = "0.5.4" log = "0.4.16" thiserror = "1.0.30" serde = { version = "1.0.136", features = ["derive"] } -tower-http = { version = "0.3.1", features = ["full"] } +tower-http = { version = "0.3.2", features = ["full"] } hyper = { version = "0.14.18", features = ["full"] } rust_utilities = { version = "0.2.0", features = ["jsonwebtoken"] } homedisk-database = { path = "../database" }