actix-form-data/Cargo.toml

34 lines
862 B
TOML
Raw Normal View History

[package]
name = "actix-form-data"
description = "Multipart Form Data for Actix Web"
2022-03-08 17:51:12 +00:00
version = "0.6.1"
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"]
2021-10-21 21:23:12 +00:00
edition = "2021"
[dependencies]
2022-03-08 17:27:49 +00:00
actix-multipart = "0.4.0"
2021-11-23 00:21:10 +00:00
actix-rt = "2.5.0"
2022-03-08 17:27:49 +00:00
actix-web = { version = "4.0.0", 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"
2022-03-08 17:27:49 +00:00
tracing-subscriber = { version = "0.3.9", features = [
"env-filter",
"fmt",
"tracing-log",
] }