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

16 lines
373 B
TOML
Raw Normal View History

[package]
name = "multipart-example"
2022-02-02 02:45:20 +01:00
version = "1.0.0"
description = "Simple file uploader in Actix Web with Async/Await"
2023-10-29 03:30:17 +01:00
edition.workspace = true
[dependencies]
actix-multipart.workspace = true
actix-web.workspace = true
env_logger.workspace = true
futures-util.workspace = true
log.workspace = true
2023-10-29 03:30:17 +01:00
sanitize-filename = "0.5"
2022-07-10 00:39:21 +02:00
uuid = { version = "1", features = ["v4"] }