From fa5e7358acea2562c2a9004ef7d7bf1bd6951d8d Mon Sep 17 00:00:00 2001 From: Kasper Juul Hermansen Date: Thu, 30 Nov 2023 09:30:29 +0000 Subject: [PATCH] chore(deps): update all dependencies --- Cargo.lock | 17 +++++------------ Cargo.toml | 4 ++-- 2 files changed, 7 insertions(+), 14 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 385961c..511eac8 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1929,12 +1929,6 @@ dependencies = [ "pin-project-lite", ] -[[package]] -name = "http-range-header" -version = "0.3.1" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "add0ab9360ddbd88cfeb3bd9574a1d85cfdfa14db10b3e21d3700dbc4328758f" - [[package]] name = "httparse" version = "1.8.0" @@ -4055,17 +4049,16 @@ dependencies = [ [[package]] name = "tower-http" -version = "0.4.4" +version = "0.5.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "61c5bb1d698276a2443e5ecfabc1008bf15a36c12e6a7176e7bf089ea9131140" +checksum = "09e12e6351354851911bdf8c2b8f2ab15050c567d70a8b9a37ae7b8301a4080d" dependencies = [ "bitflags 2.4.1", "bytes", - "futures-core", "futures-util", - "http 0.2.11", - "http-body 0.4.5", - "http-range-header", + "http 1.0.0", + "http-body 1.0.0", + "http-body-util", "pin-project-lite", "tower-layer", "tower-service", diff --git a/Cargo.toml b/Cargo.toml index 394fa47..d122c75 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -27,7 +27,7 @@ async-sqlx-session = { version = "0.4.0", features = ["pg"] } serde = { version = "1", features = ["derive"] } serde_json = { version = "1" } -uuid = {version = "1.5.0", features = ["v4"]} +uuid = {version = "1.6.1", features = ["v4"]} sqlx = { version = "0.7", features = [ "runtime-tokio", "postgres", @@ -36,7 +36,7 @@ sqlx = { version = "0.7", features = [ zitadel = { version = "3.4", features = ["axum"] } tower = "0.4" -tower-http = { version = "0.4", features = ["cors", "trace"] } +tower-http = { version = "0.5", features = ["cors", "trace"] } oauth2 = "4.4.2" openidconnect = "3.4"