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]
|
2023-01-02 21:33:43 +01:00
|
|
|
actix-multipart.workspace = true
|
|
|
|
actix-web.workspace = true
|
2021-10-07 04:27:50 +02:00
|
|
|
|
2023-02-26 22:56:55 +01:00
|
|
|
env_logger.workspace = true
|
2023-01-02 21:33:43 +01:00
|
|
|
futures-util.workspace = true
|
2023-02-26 22:56:55 +01:00
|
|
|
log.workspace = true
|
2022-07-09 23:54:51 +02:00
|
|
|
sanitize-filename = "0.4"
|
2022-07-10 00:39:21 +02:00
|
|
|
uuid = { version = "1", features = ["v4"] }
|