mirror of
https://github.com/actix/examples
synced 2024-11-23 22:41:07 +01:00
0c4ab86a9a
inspired by #406
19 lines
469 B
TOML
19 lines
469 B
TOML
[package]
|
|
name = "multipart-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-multipart = "0.3"
|
|
actix-web = "3"
|
|
|
|
futures-util = "0.3"
|
|
sanitize-filename = "0.2"
|
|
uuid = { version = "0.8", features = ["v4"] }
|