1
0
mirror of https://github.com/actix/examples synced 2024-11-23 22:41:07 +01:00
examples/forms/multipart/Cargo.toml
2022-02-02 01:45:20 +00:00

18 lines
441 B
TOML

[package]
name = "multipart-example"
version = "1.0.0"
edition = "2021"
license = "MIT"
description = "Simple file uploader in Actix Web with Async/Await"
keywords = ["actix", "actix-web", "multipart"]
repository = "https://github.com/actix/examples"
readme = "README.md"
[dependencies]
actix-multipart = "0.4.0-beta.12"
actix-web = "4.0.0-rc.1"
futures-util = "0.3"
sanitize-filename = "0.3"
uuid = { version = "0.8", features = ["v4"] }