File: Cargo.toml

package info (click to toggle)
rust-multipart 0.18.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 416 kB
  • sloc: makefile: 2; sh: 1
file content (130 lines) | stat: -rw-r--r-- 2,879 bytes parent folder | download
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies
#
# If you believe there's an error in this file please file an
# issue against the rust-lang/cargo repository. If you're
# editing this file be aware that the upstream Cargo.toml
# will likely look very different (and much more reasonable)

[package]
name = "multipart"
version = "0.18.0"
authors = ["Austin Bonander <austin.bonander@gmail.com>"]
description = "A backend-agnostic extension for HTTP libraries that provides support for POST multipart/form-data requests on both client and server."
documentation = "http://docs.rs/multipart/"
readme = "README.md"
keywords = ["form-data", "hyper", "iron", "http", "upload"]
license = "MIT OR Apache-2.0"
repository = "http://github.com/abonander/multipart"

[[bin]]
name = "form_test"
required-features = ["mock", "hyper", "server"]

[[example]]
name = "hyper_client"
required-features = ["client", "mock", "hyper"]

[[example]]
name = "hyper_reqbuilder"
required-features = ["client", "mock", "hyper"]

[[example]]
name = "hyper_server"
required-features = ["mock", "hyper", "server"]

[[example]]
name = "iron"
required-features = ["mock", "iron", "server"]

[[example]]
name = "iron_intercept"
required-features = ["mock", "iron", "server"]

[[example]]
name = "nickel"
required-features = ["mock", "nickel", "server"]

[[example]]
name = "tiny_http"
required-features = ["mock", "tiny_http", "server"]

[[example]]
name = "rocket"
required-features = ["mock", "rocket", "server"]
[disabled.dependencies.buf_redux]
version = "0.8"
optional = true
default-features = false

[disabled.dependencies.clippy]
version = ">=0.0, <0.1"
optional = true

[dependencies.httparse]
version = "1.2"
optional = true

[disabled.dependencies.hyper]
version = ">=0.9, <0.11"
optional = true
default-features = false

[disabled.dependencies.iron]
version = ">=0.4,<0.7"
optional = true

[dependencies.lazy_static]
version = "1.2.0"
optional = true

[dependencies.log]
version = "0.4"

[dependencies.mime]
version = "0.3.14"

[dependencies.mime_guess]
version = "2.0.1"

[disabled.dependencies.nickel]
version = ">=0.10.1"
optional = true

[disabled.dependencies.quick-error]
version = "1.2"
optional = true

[dependencies.rand]
version = "0.8"

[disabled.dependencies.rocket]
version = "0.4"
optional = true

[dependencies.safemem]
version = "0.3"
optional = true

[dependencies.tempfile]
version = "3"

[dependencies.tiny_http]
version = "0.12"
optional = true

[disabled.dependencies.twoway]
version = "0.1"
optional = true
[dev-dependencies.env_logger]
version = "0.11"

[features]
client = []
default = ["client", "mock", "tiny_http"]
mock = []
nightly = []