[package] name = "actix-multipart" version = "0.4.0" authors = ["Nikolay Kim "] description = "Multipart form support for Actix Web" keywords = ["http", "web", "framework", "async", "futures"] homepage = "https://actix.rs" repository = "https://github.com/actix/actix-web.git" license = "MIT OR Apache-2.0" edition = "2018" [features] default = ["tempfile"] tempfile = ["tempfile-dep", "tokio/fs"] [lib] name = "actix_multipart" path = "src/lib.rs" [dependencies] actix-utils = "3" actix-web = { version = "4", default-features = false } actix-http = "3" actix-multipart-derive = { path = "../actix-multipart-derive" } bytes = "1" derive_more = "0.99.5" futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] } futures-util = { version = "0.3.7", default-features = false } httparse = "1.3" local-waker = "0.1" log = "0.4" mime = "0.3" twoway = "0.2" serde = "1.0" serde_plain = "1.0" serde_json = "1.0" # TODO: Replace with dep: prefix in newer versions of Cargo tempfile-dep = { package = "tempfile", version = "3.3.0", optional = true } tokio = { version = "1.8.4", features = ["sync"] } [dev-dependencies] actix-rt = "2.2" actix-test = "0.1.0" awc = "3.0.1" actix-multipart-rfc7578 = "0.10.0" futures-util = { version = "0.3.7", default-features = false, features = ["alloc"] } tokio-stream = "0.1"