From d5e82c4fe2e5d791e380c0cccc12a96bea5096b1 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Thu, 5 Oct 2023 14:24:08 +0100 Subject: [PATCH] fix(deps): update rust crate axum-extra to 0.8.0 (#148) Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> --- Cargo.lock | 25 +++++++++++++++++++++++-- Cargo.toml | 2 +- 2 files changed, 24 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index f0ef3ac..46b0330 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -248,6 +248,27 @@ dependencies = [ "mime", "pin-project-lite", "serde", + "tokio", + "tower", + "tower-layer", + "tower-service", +] + +[[package]] +name = "axum-extra" +version = "0.8.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4ab90e7b70bea63a153137162affb6a0bce26b584c24a4c7885509783e2cf30b" +dependencies = [ + "axum", + "axum-core", + "bytes", + "futures-util", + "http", + "http-body", + "mime", + "pin-project-lite", + "serde", "serde_html_form", "tokio", "tower", @@ -299,7 +320,7 @@ checksum = "714cad544cd87d8da821cda715bb9aaa5d4d1adbdb64c549b18138e3cbf93c44" dependencies = [ "async-session", "axum", - "axum-extra", + "axum-extra 0.7.7", "futures", "http-body", "tokio", @@ -1516,7 +1537,7 @@ dependencies = [ "async-trait", "async_zip", "axum", - "axum-extra", + "axum-extra 0.8.0", "axum-login", "bcrypt", "chrono", diff --git a/Cargo.toml b/Cargo.toml index e77923b..40c9a2c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -7,7 +7,7 @@ edition = "2021" [dependencies] axum = { version = "0.6.20", features = ["form", "tracing", "macros", "headers", "multipart"] } -axum-extra = { version = "0.7.7", features = ["form"] } +axum-extra = { version = "0.8.0", features = ["form"] } chrono = { version = "0.4.31", features = ["rkyv", "serde", "clock"] } chrono-tz = "0.8.3" icalendar = { version = "0.15.7", features = ["chrono-tz"] }