1
0
mirror of https://github.com/actix/examples synced 2024-11-24 06:43:00 +01:00
examples/multipart-async-std/Cargo.toml

18 lines
449 B
TOML
Raw Normal View History

[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]
2020-09-12 17:49:45 +02:00
actix-web = "3"
actix-multipart = "0.3"
futures = "0.3.1"
async-std = "1.4.0"
2020-05-19 06:48:49 +02:00
sanitize-filename = "0.2"