actix-form-data/Cargo.toml
2020-09-13 20:12:43 -05:00

31 lines
842 B
TOML

[package]
name = "actix-form-data"
description = "Multipart Form Data for Actix Web"
version = "0.5.0-alpha.0"
license = "GPL-3.0"
authors = ["asonix <asonix@asonix.dog>"]
repository = "https://git.asonix.dog/Aardwolf/actix-form-data.git"
readme = "README.md"
keywords = ["actix", "form-data", "multipart", "async"]
edition = "2018"
[dependencies]
actix-multipart = "0.3.0"
actix-rt = "1.1.1"
actix-web = "3.0.1"
bytes = "0.5.0"
futures = "0.3.4"
mime = "0.3.16"
thiserror = "1.0"
tokio = { version = "0.2.21", features = ["sync"] }
tracing = "0.1.15"
tracing-futures = "0.2.4"
[dev-dependencies]
actix-fs = { git = "https://git.asonix.dog/asonix/actix-fs" }
anyhow = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
tracing-subscriber = { version = "0.2.5", features = ["fmt", "tracing-log"] }