From 9f8f7fccea9cb1ae172149ca420b56c8a1659bf4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 May 2023 05:43:49 +0000 Subject: [PATCH] Bump actix-multipart from 0.4.0 to 0.6.0 Bumps [actix-multipart](https://github.com/actix/actix-web) from 0.4.0 to 0.6.0. - [Release notes](https://github.com/actix/actix-web/releases) - [Changelog](https://github.com/actix/actix-web/blob/v0.6.0/CHANGES.md) - [Commits](https://github.com/actix/actix-web/compare/v0.4.0...v0.6.0) --- updated-dependencies: - dependency-name: actix-multipart dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Cargo.lock | 57 +++++++++++++++++++++++++------------- create-rust-app/Cargo.toml | 2 +- 2 files changed, 39 insertions(+), 20 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index df2591fd..35c10628 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -103,20 +103,40 @@ dependencies = [ [[package]] name = "actix-multipart" -version = "0.4.0" +version = "0.6.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c9edfb0e7663d7fe18c8d5b668c9c1bcf79176b1dcc9d4da9592503209a6bfb0" +checksum = "dee489e3c01eae4d1c35b03c4493f71cb40d93f66b14558feb1b1a807671cc4e" dependencies = [ + "actix-multipart-derive", "actix-utils", "actix-web", "bytes", "derive_more", "futures-core", + "futures-util", "httparse", "local-waker", "log", + "memchr", "mime", - "twoway", + "serde", + "serde_json", + "serde_plain", + "tempfile", + "tokio", +] + +[[package]] +name = "actix-multipart-derive" +version = "0.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2ec592f234db8a253cf80531246a4407c8a70530423eea80688a6c5a44a110e7" +dependencies = [ + "darling", + "parse-size", + "proc-macro2", + "quote", + "syn", ] [[package]] @@ -3184,6 +3204,12 @@ dependencies = [ "windows-sys 0.42.0", ] +[[package]] +name = "parse-size" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "944553dd59c802559559161f9816429058b869003836120e262e8caec061b7ae" + [[package]] name = "parse-zoneinfo" version = "0.3.0" @@ -3959,6 +3985,15 @@ dependencies = [ "serde", ] +[[package]] +name = "serde_plain" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6018081315db179d0ce57b1fe4b62a12a0028c9cf9bbef868c9cf477b3c34ae" +dependencies = [ + "serde", +] + [[package]] name = "serde_urlencoded" version = "0.7.1" @@ -4593,16 +4628,6 @@ dependencies = [ "utf-8", ] -[[package]] -name = "twoway" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "c57ffb460d7c24cd6eda43694110189030a3d1dfe418416d9468fd1c1d290b47" -dependencies = [ - "memchr", - "unchecked-index", -] - [[package]] name = "typed-builder" version = "0.14.0" @@ -4659,12 +4684,6 @@ dependencies = [ "version_check", ] -[[package]] -name = "unchecked-index" -version = "0.2.2" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "eeba86d422ce181a719445e51872fa30f1f7413b62becb52e95ec91aa262d85c" - [[package]] name = "unic-char-property" version = "0.9.0" diff --git a/create-rust-app/Cargo.toml b/create-rust-app/Cargo.toml index 436867d9..d8f864eb 100644 --- a/create-rust-app/Cargo.toml +++ b/create-rust-app/Cargo.toml @@ -100,7 +100,7 @@ poem = { optional = true, version = "1.3.52", features = [ ] } # actix_web dependencies -actix-multipart = { optional = true, version = "0.4.0" } +actix-multipart = { optional = true, version = "0.6.0" } actix-files = { optional = true, version = "0.6.2" } actix-http = { optional = true, version = "3.0.4" } actix-web = { optional = true, version = "4.2.1" }