1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-06-11 17:59:35 +00:00
actix-web/actix-multipart/Cargo.toml

35 lines
915 B
TOML
Raw Normal View History

[package]
name = "actix-multipart"
2019-11-20 17:33:22 +00:00
version = "0.2.0-alpha.1"
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/Apache-2.0"
exclude = [".gitignore", ".travis.yml", ".cargo/config", "appveyor.yml"]
workspace = ".."
edition = "2018"
[lib]
name = "actix_multipart"
path = "src/lib.rs"
[dependencies]
2019-11-21 08:25:50 +00:00
actix-web = { version = "2.0.0-alpha.1", default-features = false }
actix-service = "1.0.0-alpha.1"
actix-utils = "0.5.0-alpha.1"
bytes = "0.4"
2019-06-16 16:10:22 +00:00
derive_more = "0.15.0"
httparse = "1.3"
2019-11-21 08:25:50 +00:00
futures = "0.3.1"
log = "0.4"
mime = "0.3"
time = "0.1"
twoway = "0.2"
[dev-dependencies]
2019-11-21 08:25:50 +00:00
actix-rt = "1.0.0-alpha.1"
actix-http = "0.3.0-alpha.1"