1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-05-20 01:08:10 +00:00
actix-web/actix-multipart/Cargo.toml

33 lines
815 B
TOML
Raw Normal View History

[package]
name = "actix-multipart"
2020-09-11 12:50:10 +00:00
version = "0.3.0"
authors = ["Nikolay Kim <fafhrd91@gmail.com>"]
description = "Multipart support for actix web framework."
readme = "README.md"
keywords = ["http", "web", "framework", "async", "futures"]
homepage = "https://actix.rs"
repository = "https://github.com/actix/actix-web.git"
documentation = "https://docs.rs/actix-multipart/"
license = "MIT OR Apache-2.0"
edition = "2018"
[lib]
name = "actix_multipart"
path = "src/lib.rs"
[dependencies]
2020-09-11 12:50:10 +00:00
actix-web = { version = "3.0.0", default-features = false }
actix-service = "1.0.6"
actix-utils = "2.0.0"
2019-12-13 06:36:15 +00:00
bytes = "0.5.3"
2019-11-25 11:59:14 +00:00
derive_more = "0.99.2"
httparse = "1.3"
futures-util = { version = "0.3.5", default-features = false }
log = "0.4"
mime = "0.3"
twoway = "0.2"
[dev-dependencies]
2019-12-11 13:20:20 +00:00
actix-rt = "1.0.0"
2020-09-11 12:50:10 +00:00
actix-http = "2.0.0"