-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathCargo.toml
52 lines (44 loc) · 985 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
51
52
[package]
name = "chttp"
version = "0.3.0"
description = "The practical HTTP client that is fun to use."
authors = ["Stephen M. Coakley <me@stephencoakley.com>"]
license = "MIT"
keywords = ["http", "request", "client"]
categories = ["web-programming::http-client"]
readme = "README.md"
repository = "https://github.com/sagebind/chttp"
[badges.maintenance]
status = "actively-developed"
[features]
default = ["cookies", "http2", "psl"]
cookies = ["chrono"]
http2 = ["curl/http2"]
async-api = []
middleware-api = []
[dependencies]
bytes = "0.4"
crossbeam-channel = "0.3"
curl = "0.4"
futures-preview = "0.2.2"
http = "0.1"
lazy_static = "1"
lazycell = "1.2"
log = "0.4"
regex = "1.1"
slab = "0.4"
withers_derive = "0.2"
[dependencies.chrono]
version = "0.4"
optional = true
[dependencies.json]
version = "0.11"
optional = true
[dependencies.psl]
version = "0.4"
optional = true
[target.'cfg(unix)'.dependencies]
nix = "0.12"
[dev-dependencies]
env_logger = "0.6"
rouille = "2.2"