2019-04-03 19:28:58 +00:00
|
|
|
[package]
|
|
|
|
name = "actix-multipart"
|
2023-08-29 00:18:37 +00:00
|
|
|
version = "0.6.1"
|
2023-02-26 03:26:06 +00:00
|
|
|
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"
|
2019-04-03 19:28:58 +00:00
|
|
|
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"
|
2020-07-14 02:19:56 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2023-07-02 00:09:15 +00:00
|
|
|
edition = "2021"
|
2019-04-03 19:28:58 +00:00
|
|
|
|
2023-02-26 03:26:06 +00:00
|
|
|
[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"]
|
2023-02-26 03:26:06 +00:00
|
|
|
|
2019-04-03 19:28:58 +00:00
|
|
|
[dependencies]
|
2023-08-29 00:17:32 +00:00
|
|
|
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 }
|
2021-01-03 23:47:04 +00:00
|
|
|
|
|
|
|
bytes = "1"
|
2021-01-07 20:02:08 +00:00
|
|
|
derive_more = "0.99.5"
|
2022-12-18 01:34:48 +00:00
|
|
|
futures-core = { version = "0.3.17", default-features = false, features = ["alloc"] }
|
2023-02-26 03:26:06 +00:00
|
|
|
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"
|
2019-04-03 19:28:58 +00:00
|
|
|
log = "0.4"
|
2022-10-14 11:52:13 +00:00
|
|
|
memchr = "2.5"
|
2023-02-26 03:26:06 +00:00
|
|
|
mime = "0.3"
|
|
|
|
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"] }
|
2019-04-03 19:28:58 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
2022-09-11 15:41:29 +00:00
|
|
|
actix-http = "3"
|
2023-02-26 03:26:06 +00:00
|
|
|
actix-multipart-rfc7578 = "0.10"
|
|
|
|
actix-rt = "2.2"
|
|
|
|
actix-test = "0.1"
|
|
|
|
awc = "3"
|
2022-12-18 01:34:48 +00:00
|
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["alloc"] }
|
2023-02-26 03:47:25 +00:00
|
|
|
tokio = { version = "1.24.2", features = ["sync"] }
|
2021-02-24 09:08:56 +00:00
|
|
|
tokio-stream = "0.1"
|