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

35 lines
895 B
TOML
Raw Normal View History

[package]
name = "actix-multipart"
2022-02-25 21:41:57 +01:00
version = "0.4.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
2021-02-10 13:10:03 +01:00
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"
[lib]
name = "actix_multipart"
path = "src/lib.rs"
[dependencies]
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 }
bytes = "1"
2021-01-07 21:02:08 +01:00
derive_more = "0.99.5"
2021-04-01 16:26:13 +02:00
futures-core = { version = "0.3.7", default-features = false, features = ["alloc"] }
httparse = "1.3"
local-waker = "0.1"
log = "0.4"
mime = "0.3"
memchr = "2.5"
[dev-dependencies]
actix-rt = "2.2"
2022-09-11 17:41:29 +02:00
actix-http = "3"
futures-util = { version = "0.3.7", default-features = false, features = ["alloc"] }
tokio = { version = "1.8.4", features = ["sync"] }
tokio-stream = "0.1"