2019-04-03 19:28:58 +00:00
|
|
|
[package]
|
|
|
|
name = "actix-multipart"
|
2021-12-27 18:45:31 +00:00
|
|
|
version = "0.4.0-beta.11"
|
2019-04-03 19:28:58 +00:00
|
|
|
authors = ["Nikolay Kim <fafhrd91@gmail.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"
|
|
|
|
repository = "https://github.com/actix/actix-web.git"
|
2020-07-14 02:19:56 +00:00
|
|
|
license = "MIT OR Apache-2.0"
|
2019-04-03 19:28:58 +00:00
|
|
|
edition = "2018"
|
|
|
|
|
|
|
|
[lib]
|
|
|
|
name = "actix_multipart"
|
|
|
|
path = "src/lib.rs"
|
|
|
|
|
|
|
|
[dependencies]
|
2021-04-17 01:07:33 +00:00
|
|
|
actix-utils = "3.0.0"
|
2021-12-27 18:45:31 +00:00
|
|
|
actix-web = { version = "4.0.0-beta.16", 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"
|
2021-04-01 14:26:13 +00:00
|
|
|
futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] }
|
|
|
|
httparse = "1.3"
|
|
|
|
local-waker = "0.1"
|
2019-04-03 19:28:58 +00:00
|
|
|
log = "0.4"
|
|
|
|
mime = "0.3"
|
|
|
|
twoway = "0.2"
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2021-03-29 12:45:48 +00:00
|
|
|
actix-rt = "2.2"
|
2021-12-27 18:45:31 +00:00
|
|
|
actix-http = "3.0.0-beta.17"
|
2021-11-24 20:53:11 +00:00
|
|
|
futures-util = { version = "0.3.7", default-features = false, features = ["alloc"] }
|
2021-12-22 08:41:44 +00:00
|
|
|
tokio = { version = "1.8", features = ["sync"] }
|
2021-02-24 09:08:56 +00:00
|
|
|
tokio-stream = "0.1"
|