1
0
mirror of https://github.com/fafhrd91/actix-web synced 2024-11-23 16:21:06 +01:00
actix-web/actix-multipart/Cargo.toml

77 lines
1.9 KiB
TOML
Raw Permalink Normal View History

[package]
name = "actix-multipart"
version = "0.7.2"
authors = [
"Nikolay Kim <fafhrd91@gmail.com>",
"Jacob Halsey <jacob@jhalsey.com>",
"Rob Ede <robjtede@icloud.com>",
]
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
[package.metadata.docs.rs]
rustdoc-args = ["--cfg", "docsrs"]
all-features = true
2024-06-10 04:39:06 +02: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::*",
]
[features]
default = ["tempfile", "derive"]
derive = ["actix-multipart-derive"]
2023-07-18 03:18:19 +02:00
tempfile = ["dep:tempfile", "tokio/fs"]
[dependencies]
actix-multipart-derive = { version = "=0.7.0", optional = true }
2022-03-08 17:51:40 +01:00
actix-utils = "3"
2022-06-11 17:15:43 +02:00
actix-web = { version = "4", default-features = false }
derive_more = { version = "1", features = ["display", "error", "from"] }
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 16:26:13 +02: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 03:22:09 +02:00
tempfile = { version = "3.4", optional = true }
2023-07-18 03:18:19 +02:00
tokio = { version = "1.24.2", features = ["sync", "io-util"] }
[dev-dependencies]
2022-09-11 17:41:29 +02:00
actix-http = "3"
actix-multipart-rfc7578 = "0.10"
actix-rt = "2.2"
actix-test = "0.1"
actix-web = "4"
assert_matches = "1"
awc = "3"
env_logger = "0.11"
futures-util = { version = "0.3.17", default-features = false, features = ["alloc"] }
futures-test = "0.3"
multer = "3"
2023-02-26 04:47:25 +01:00
tokio = { version = "1.24.2", features = ["sync"] }
tokio-stream = "0.1"
2024-07-07 04:54:00 +02:00
[lints]
workspace = true