forked from ferristseng/rust-multipart-rfc7578
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
25 lines (23 loc) · 906 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[package]
name = "multipart-rfc7578"
description = "An implementation of multipart/form-data (RFC7578)"
authors = ["Marat Safin <jeizsm@gmail.com>", "Ferris Tseng <ferristseng@fastmail.fm>"]
documentation = "https://docs.rs/multipart-rfc7578"
repository = "https://github.com/jeizsm/rust-multipart-rfc7578"
keywords = ["hyper", "actix-web", "multipart", "form", "http"]
categories = ["asynchronous", "web-programming"]
version = "0.7.0"
readme = "README.md"
license = "MIT OR Apache-2.0"
edition = "2018"
[dependencies]
mime = "0.3"
rand = "0.5"
http = "0.1"
hyper = { version = "0.12", optional = true }
bytes = { version = "0.4", optional = true }
futures = { version = "0.1", optional = true }
awc = { version = "0.2", optional = true }
[features]
default = ["bytes", "futures"]
part-content-length = []