1
0
mirror of https://github.com/actix/examples synced 2025-06-27 01:27:43 +02:00

Updated forms/multipart to v4. (#503)

This commit is contained in:
Christopher Gubbin
2022-01-29 16:40:50 +00:00
committed by GitHub
parent e903184a12
commit 5df5bd10ea
3 changed files with 11 additions and 14 deletions

View File

@ -2,7 +2,7 @@
name = "multipart-example"
version = "0.3.0"
authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
edition = "2018"
edition = "2021"
license = "MIT"
description = "Simple file uploader in Actix Web with Async/Await"
keywords = ["actix", "actix-web", "multipart"]
@ -10,9 +10,9 @@ repository = "https://github.com/actix/examples"
readme = "README.md"
[dependencies]
actix-multipart = "0.3"
actix-web = "3"
actix-multipart = "0.4.0-beta.12"
actix-web = "4.0.0-beta.21"
futures-util = "0.3"
sanitize-filename = "0.2"
sanitize-filename = "0.3"
uuid = { version = "0.8", features = ["v4"] }