From 0ee2887bf8b0dc43b40cca2333fbb218406c6b22 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 16 Nov 2024 09:44:49 +0000 Subject: [PATCH] Update Rust crate axum-extra to v0.9.5 --- Cargo.lock | 24 +++++++++++++++++++++--- Cargo.toml | 2 +- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 13d08dda033..30f6c64c6c3 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -549,26 +549,27 @@ dependencies = [ [[package]] name = "axum-extra" -version = "0.9.4" +version = "0.9.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73c3220b188aea709cf1b6c5f9b01c3bd936bb08bd2b5184a12b35ac8131b1f9" +checksum = "37634d71e9f3c35cfb1c30c87c7cba500d55892f04c2dbe6a99383c664b820b0" dependencies = [ "axum", "axum-core", "bytes", "cookie", + "fastrand", "futures-util", "headers", "http 1.1.0", "http-body 1.0.1", "http-body-util", "mime", + "multer", "pin-project-lite", "serde", "tower", "tower-layer", "tower-service", - "tracing", ] [[package]] @@ -3106,6 +3107,23 @@ dependencies = [ "syn 2.0.87", ] +[[package]] +name = "multer" +version = "3.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "83e87776546dc87511aa5ee218730c92b666d7264ab6ed41f9d215af9cd5224b" +dependencies = [ + "bytes", + "encoding_rs", + "futures-util", + "http 1.1.0", + "httparse", + "memchr", + "mime", + "spin", + "version_check", +] + [[package]] name = "native-tls" version = "0.2.12" diff --git a/Cargo.toml b/Cargo.toml index 8ce16a9a7a8..4e75c423817 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -44,7 +44,7 @@ aws-ip-ranges = "=0.913.0" aws-sdk-cloudfront = "=1.52.0" aws-sdk-sqs = "=1.49.0" axum = { version = "=0.7.8", features = ["macros", "matched-path"] } -axum-extra = { version = "=0.9.4", features = ["cookie-signed", "typed-header"] } +axum-extra = { version = "=0.9.5", features = ["cookie-signed", "typed-header"] } base64 = "=0.22.1" bigdecimal = { version = "=0.4.6", features = ["serde"] } bon = "=3.0.0"