-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
50 lines (45 loc) · 895 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 = "xkcd"
version = "0.3.0"
authors = ["Nikita Pekin <[email protected]>"]
description = "Interface for the XKCD web API"
repository = "https://github.com/indiv0/xkcd-rs"
documentation = "https://indiv0.github.io/xkcd-rs/xkcd/"
readme = "README.md"
keywords = [
"comic",
"xkcd",
"API",
"web",
"library",
]
license = "MIT/Apache-2.0"
include = [
"CHANGELOG.md",
"Cargo.toml",
"LICENSE-MIT",
"LICENSE-APACHE",
"README.md",
"src/**/*.rs",
]
[dependencies]
futures = "0.1.17"
log = "0.3.8"
rand = "0.3.18"
serde = "1.0.21"
serde_derive = "1.0.21"
serde_json = "1.0.6"
url = "1.6.0"
url_serde = "0.2.0"
[dependencies.clippy]
optional = true
version = "0.0"
[dependencies.hyper]
optional = true
version = "0.11.7"
[dev_dependencies]
hyper-tls = "0.1.2"
tokio-core = "0.1.10"
[features]
default = ["hyper"]
nightly-testing = ["clippy"]