forked from hyperium/hyper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
50 lines (42 loc) · 973 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
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
[package]
name = "hyper"
version = "0.7.2"
description = "A modern HTTP library."
readme = "README.md"
documentation = "http://hyperium.github.io/hyper/hyper/index.html"
repository = "https://github.com/hyperium/hyper"
license = "MIT"
authors = ["Sean McArthur <sean.monstar@gmail.com>",
"Jonathan Reem <jonathan.reem@gmail.com>"]
keywords = ["http", "hyper", "hyperium"]
[dependencies]
httparse = "1.0"
language-tags = "0.2"
log = "0.3"
mime = "0.1"
num_cpus = "0.2"
rustc-serialize = "0.3"
time = "0.1"
traitobject = "0.0.1"
typeable = "0.1"
unicase = "1.0"
url = "0.5"
[dependencies.cookie]
version = "0.2"
default-features = false
[dependencies.openssl]
version = "0.7"
optional = true
[dependencies.solicit]
version = "0.4"
default-features = false
[dependencies.serde]
version = "0.6"
optional = true
[dev-dependencies]
env_logger = "0.3"
[features]
default = ["ssl"]
ssl = ["openssl", "cookie/secure"]
serde-serialization = ["serde"]
nightly = []