actix-form-data/Cargo.toml

36 lines
958 B
TOML
Raw Normal View History

[package]
name = "actix-form-data"
description = "Multipart Form Data for Actix Web"
2024-03-28 00:03:45 +00:00
version = "0.7.0-beta.7"
license = "GPL-3.0"
2018-06-04 18:27:36 +00:00
authors = ["asonix <asonix@asonix.dog>"]
2022-03-08 18:07:33 +00:00
repository = "https://git.asonix.dog/asonix/actix-form-data.git"
readme = "README.md"
keywords = ["actix", "form-data", "multipart", "async"]
2021-10-21 21:23:12 +00:00
edition = "2021"
[dependencies]
2023-06-01 21:19:17 +00:00
actix-multipart = { version = "0.6.0", default-features = false }
2022-03-08 17:27:49 +00:00
actix-web = { version = "4.0.0", default-features = false }
futures-core = "0.3.28"
mime = "0.3.16"
2023-12-11 00:16:10 +00:00
streem = "0.2.0"
thiserror = "1.0"
tokio = { version = "1", default-features = false, features = ["macros", "sync"] }
2020-06-14 18:39:12 +00:00
tracing = "0.1.15"
[dev-dependencies]
actix-rt = "2.5.0"
2023-12-11 00:16:10 +00:00
async-fs = "2.1.0"
anyhow = "1.0"
2023-12-11 00:16:10 +00:00
futures-lite = "2.1.0"
futures-util = "0.3.17"
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",
] }