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

17 lines
419 B
TOML
Raw Normal View History

[package]
name = "multipart-example"
version = "0.3.0"
authors = ["Bevan Hunt <bevan@bevanhunt.com>"]
2019-03-29 21:43:03 +01:00
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]
2020-09-12 17:49:45 +02:00
actix-multipart = "0.3"
actix-web = "3"
2020-04-05 06:50:44 +02:00
futures = "0.3.1"
2020-05-19 06:48:49 +02:00
sanitize-filename = "0.2"