2019-04-03 19:28:58 +00:00
|
|
|
[package]
|
|
|
|
name = "actix-multipart"
|
2024-07-06 23:34:18 +00:00
|
|
|
version = "0.7.2"
|
2023-02-26 03:26:06 +00:00
|
|
|
authors = [
|
|
|
|
"Nikolay Kim <fafhrd91@gmail.com>",
|
|
|
|
"Jacob Halsey <jacob@jhalsey.com>",
|
2024-07-07 19:32:56 +00:00
|
|
|
"Rob Ede <robjtede@icloud.com>",
|
2023-02-26 03:26:06 +00:00
|
|
|
]
|
2024-07-07 19:32:56 +00:00
|
|
|
description = "Multipart request & form support for Actix Web"
|
|
|
|
keywords = ["http", "actix", "web", "multipart", "form"]
|
|
|
|
homepage.workspace = true
|
|
|
|
repository.workspace = true
|
|
|
|
license.workspace = true
|
|
|
|
edition.workspace = true
|
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
|
|
|
|
|
2024-06-10 02:39:06 +00:00
|
|
|
[package.metadata.cargo_check_external_types]
|
|
|
|
allowed_external_types = [
|
|
|
|
"actix_http::*",
|
|
|
|
"actix_multipart_derive::*",
|
|
|
|
"actix_utils::*",
|
|
|
|
"actix_web::*",
|
|
|
|
"bytes::*",
|
|
|
|
"futures_core::*",
|
|
|
|
"mime::*",
|
|
|
|
"serde_json::*",
|
|
|
|
"serde_plain::*",
|
|
|
|
"serde::*",
|
|
|
|
"tempfile::*",
|
|
|
|
]
|
|
|
|
|
2023-02-26 03:26:06 +00:00
|
|
|
[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]
|
2024-07-06 23:30:27 +00:00
|
|
|
actix-multipart-derive = { version = "=0.7.0", 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
|
|
|
|
2024-08-18 14:17:03 +00:00
|
|
|
derive_more = { version = "1", features = ["display", "error", "from"] }
|
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"
|
2024-02-14 22:22:07 +00:00
|
|
|
rand = "0.8"
|
2023-02-26 03:26:06 +00:00
|
|
|
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"
|
2024-02-14 22:22:07 +00:00
|
|
|
actix-web = "4"
|
2024-07-01 02:55:08 +00:00
|
|
|
assert_matches = "1"
|
2023-02-26 03:26:06 +00:00
|
|
|
awc = "3"
|
2024-07-01 02:55:08 +00:00
|
|
|
env_logger = "0.11"
|
2022-12-18 01:34:48 +00:00
|
|
|
futures-util = { version = "0.3.17", default-features = false, features = ["alloc"] }
|
2024-07-06 22:38:37 +00:00
|
|
|
futures-test = "0.3"
|
2024-02-14 22:22:07 +00:00
|
|
|
multer = "3"
|
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"
|
2024-07-04 00:12:17 +00:00
|
|
|
|
2024-07-07 02:54:00 +00:00
|
|
|
[lints]
|
|
|
|
workspace = true
|