1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/forms/multipart-async-std/Cargo.toml
2021-10-07 03:27:50 +01:00

19 lines
496 B
TOML

[package]
name = "multipart-async-std-example"
version = "0.3.0"
authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
edition = "2018"
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-web = "3"
actix-multipart = "0.3"
futures-util = "0.3"
async-std = "1.8"
sanitize-filename = "0.2"
uuid = { version = "0.8", features = ["v4"] }