actix-form-data/Cargo.toml

31 lines
788 B
TOML
Raw Normal View History

[package]
name = "actix-form-data"
description = "Multipart Form Data for Actix Web"
2020-09-14 01:13:50 +00:00
version = "0.5.0"
license = "GPL-3.0"
2018-06-04 18:27:36 +00:00
authors = ["asonix <asonix@asonix.dog>"]
2019-05-14 16:49:41 +00:00
repository = "https://git.asonix.dog/Aardwolf/actix-form-data.git"
readme = "README.md"
keywords = ["actix", "form-data", "multipart", "async"]
edition = "2018"
[dependencies]
2020-09-14 01:12:43 +00:00
actix-multipart = "0.3.0"
actix-rt = "1.1.1"
2020-09-14 01:12:43 +00:00
actix-web = "3.0.1"
bytes = "0.5.0"
futures = "0.3.4"
mime = "0.3.16"
thiserror = "1.0"
2020-06-06 02:40:44 +00:00
tokio = { version = "0.2.21", features = ["sync"] }
2020-06-14 18:39:12 +00:00
tracing = "0.1.15"
[dev-dependencies]
2020-09-14 15:38:54 +00:00
async-fs = "1.2.1"
anyhow = "1.0"
2020-09-14 15:38:54 +00:00
futures-lite = "1.4.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
2020-06-06 02:40:44 +00:00
thiserror = "1.0"
2020-06-14 18:39:12 +00:00
tracing-subscriber = { version = "0.2.5", features = ["fmt", "tracing-log"] }