1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-20 01:08:10 +00:00
actix-web/actix-multipart/Cargo.toml

56 lines
1.5 KiB
TOML
Raw Permalink Normal View History

[package]
name = "actix-multipart"
version = "0.6.1"
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Jacob Halsey <jacob@jhalsey.com>",
]
2021-02-10 12:10:03 +00:00
description = "Multipart form support for Actix Web"
keywords = ["http", "web", "framework", "async", "futures"]
homepage = "https://actix.rs"
2023-11-06 23:54:38 +00:00
repository = "https://github.com/actix/actix-web"
license = "MIT OR Apache-2.0"
2023-07-02 00:09:15 +00:00
edition = "2021"
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true
[features]
default = ["tempfile", "derive"]
derive = ["actix-multipart-derive"]
2023-07-18 01:18:19 +00:00
tempfile = ["dep:tempfile", "tokio/fs"]
[dependencies]
actix-multipart-derive = { version = "=0.6.1", optional = true }
2022-03-08 16:51:40 +00:00
actix-utils = "3"
2022-06-11 15:15:43 +00:00
actix-web = { version = "4", default-features = false }
bytes = "1"
2021-01-07 20:02:08 +00:00
derive_more = "0.99.5"
futures-core = { version = "0.3.17", default-features = false, features = ["alloc"] }
futures-util = { version = "0.3.17", default-features = false, features = ["alloc"] }
2021-04-01 14:26:13 +00:00
httparse = "1.3"
local-waker = "0.1"
log = "0.4"
memchr = "2.5"
mime = "0.3"
rand = "0.8"
serde = "1"
serde_json = "1"
serde_plain = "1"
2023-07-18 01:22:09 +00:00
tempfile = { version = "3.4", optional = true }
2023-07-18 01:18:19 +00:00
tokio = { version = "1.24.2", features = ["sync", "io-util"] }
[dev-dependencies]
2022-09-11 15:41:29 +00:00
actix-http = "3"
actix-multipart-rfc7578 = "0.10"
actix-rt = "2.2"
actix-test = "0.1"
actix-web = "4"
awc = "3"
futures-util = { version = "0.3.17", default-features = false, features = ["alloc"] }
multer = "3"
2023-02-26 03:47:25 +00:00
tokio = { version = "1.24.2", features = ["sync"] }
tokio-stream = "0.1"