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

18 lines
484 B
TOML
Raw Normal View History

[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"
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]
2022-02-25 22:25:21 +01:00
actix-multipart = "0.4"
2022-02-25 22:07:22 +01:00
actix-web = "4"
2022-03-06 01:15:16 +01:00
futures-util = { version = "0.3.7", default-features = false, features = ["std"] }
2022-01-29 17:40:50 +01:00
sanitize-filename = "0.3"
uuid = { version = "0.8", features = ["v4"] }