asonix
3282cb4192
All checks were successful
/ check (armv7-unknown-linux-musleabihf) (push) Successful in 22s
/ check (aarch64-unknown-linux-musl) (push) Successful in 22s
/ check (x86_64-unknown-linux-musl) (push) Successful in 22s
/ clippy (push) Successful in 30s
/ tests (push) Successful in 33s
/ build (aarch64-unknown-linux-musl) (push) Successful in 31s
/ build (armv7-unknown-linux-musleabihf) (push) Successful in 31s
/ build (x86_64-unknown-linux-musl) (push) Successful in 22s
/ publish-forgejo (push) Successful in 6s
/ publish-crate (push) Successful in 24s
35 lines
958 B
TOML
35 lines
958 B
TOML
[package]
|
|
name = "actix-form-data"
|
|
description = "Multipart Form Data for Actix Web"
|
|
version = "0.7.0-beta.8"
|
|
license = "GPL-3.0"
|
|
authors = ["asonix <asonix@asonix.dog>"]
|
|
repository = "https://git.asonix.dog/asonix/actix-form-data.git"
|
|
readme = "README.md"
|
|
keywords = ["actix", "form-data", "multipart", "async"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
actix-multipart = { version = "0.7.2", default-features = false }
|
|
actix-web = { version = "4.0.0", default-features = false }
|
|
futures-core = "0.3.28"
|
|
mime = "0.3.16"
|
|
streem = "0.2.0"
|
|
thiserror = "1.0"
|
|
tokio = { version = "1", default-features = false, features = ["macros", "sync"] }
|
|
tracing = "0.1.15"
|
|
|
|
[dev-dependencies]
|
|
actix-rt = "2.5.0"
|
|
async-fs = "2.1.0"
|
|
anyhow = "1.0"
|
|
futures-lite = "2.1.0"
|
|
futures-util = "0.3.17"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
thiserror = "1.0"
|
|
tracing-subscriber = { version = "0.3.9", features = [
|
|
"env-filter",
|
|
"fmt",
|
|
"tracing-log",
|
|
] }
|