actix-form-data/Cargo.toml

30 lines
862 B
TOML
Raw Normal View History

[package]
name = "actix-form-data"
description = "Multipart Form Data for Actix Web"
2021-10-20 23:14:23 +00:00
version = "0.6.0-beta.10"
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]
2021-10-20 23:14:23 +00:00
actix-multipart = "0.4.0-beta.7"
actix-rt = "2.3.0"
actix-web = { version = "4.0.0-beta.10", default-features = false }
2021-09-06 00:37:13 +00:00
futures-util = "0.3.17"
mime = "0.3.16"
thiserror = "1.0"
tokio = { version = "1", default-features = false, 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"] }