1
0
mirror of https://github.com/actix/examples synced 2025-01-23 06:14:35 +01:00
examples/forms/multipart/Cargo.toml

18 lines
483 B
TOML
Raw Normal View History

[package]
name = "multipart-example"
2022-02-02 01:45:20 +00:00
version = "1.0.0"
2022-01-29 16:40:50 +00: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 21:25:21 +00:00
actix-multipart = "0.4"
2022-02-25 21:07:22 +00:00
actix-web = "4"
2022-07-12 01:08:56 +01:00
futures-util = { version = "0.3.17", default-features = false, features = ["std"] }
2022-07-09 22:54:51 +01:00
sanitize-filename = "0.4"
2022-07-09 23:39:21 +01:00
uuid = { version = "1", features = ["v4"] }