From 65b802d9054e42b09e79b1487baae747c8587326 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 21 Nov 2024 03:21:16 +0000 Subject: [PATCH] chore(deps): bump axum-extra from 0.9.4 to 0.9.6 Bumps [axum-extra](https://github.com/tokio-rs/axum) from 0.9.4 to 0.9.6. - [Release notes](https://github.com/tokio-rs/axum/releases) - [Changelog](https://github.com/tokio-rs/axum/blob/main/CHANGELOG.md) - [Commits](https://github.com/tokio-rs/axum/compare/axum-extra-v0.9.4...axum-extra-v0.9.6) --- updated-dependencies: - dependency-name: axum-extra dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- Cargo.lock | 24 +++++++++++++++++++++--- netmito/Cargo.toml | 2 +- 2 files changed, 22 insertions(+), 4 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index d929de2..7a388df 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -544,25 +544,26 @@ dependencies = [ [[package]] name = "axum-extra" -version = "0.9.4" +version = "0.9.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "73c3220b188aea709cf1b6c5f9b01c3bd936bb08bd2b5184a12b35ac8131b1f9" +checksum = "c794b30c904f0a1c2fb7740f7df7f7972dfaa14ef6f57cb6178dc63e5dca2f04" dependencies = [ "axum", "axum-core", "bytes", + "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]] @@ -2233,6 +2234,23 @@ dependencies = [ "tracing-subscriber", ] +[[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/netmito/Cargo.toml b/netmito/Cargo.toml index edc1eb8..06d9865 100644 --- a/netmito/Cargo.toml +++ b/netmito/Cargo.toml @@ -18,7 +18,7 @@ argon2 = { version = "0.5.3", features = ["std"] } async-compression = { version = "0.4.10", features = ["gzip", "tokio"] } aws-sdk-s3 = { version = "1.60.0", features = ["behavior-version-latest"] } axum = { version = "0.7.9", features = ["http2"] } -axum-extra = { version = "0.9.4", features = ["typed-header"] } +axum-extra = { version = "0.9.6", features = ["typed-header"] } base64 = "0.22.0" clap = { workspace = true } clap-repl = "0.3.0"