actix-form-data/Cargo.toml

30 lines
788 B
TOML
Raw Normal View History

[package]
name = "actix-form-data"
description = "Multipart Form Data for Actix Web"
2021-06-19 19:17:10 +00:00
version = "0.6.0-beta.3"
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-06-19 19:17:10 +00:00
actix-multipart = "0.4.0-beta.5"
2021-03-10 01:52:48 +00:00
actix-rt = "2.1.0"
2021-06-19 19:17:10 +00:00
actix-web = "4.0.0-beta.7"
futures = "0.3.4"
mime = "0.3.16"
thiserror = "1.0"
2021-02-10 20:23:19 +00:00
tokio = { version = "1", 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"] }