2018-04-13 03:18:42 +02:00
|
|
|
[package]
|
|
|
|
name = "multipart-example"
|
2022-02-02 02:45:20 +01:00
|
|
|
version = "1.0.0"
|
2022-01-29 17:40:50 +01:00
|
|
|
edition = "2021"
|
2019-12-07 15:40:31 +01:00
|
|
|
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"
|
2018-04-13 03:18:42 +02:00
|
|
|
|
|
|
|
[dependencies]
|
2022-01-29 17:40:50 +01:00
|
|
|
actix-multipart = "0.4.0-beta.12"
|
2022-02-18 03:40:58 +01:00
|
|
|
actix-web = "4.0.0-rc.3"
|
2021-10-07 04:27:50 +02:00
|
|
|
|
|
|
|
futures-util = "0.3"
|
2022-01-29 17:40:50 +01:00
|
|
|
sanitize-filename = "0.3"
|
2021-10-07 04:27:50 +02:00
|
|
|
uuid = { version = "0.8", features = ["v4"] }
|