forked from softprops/hubcaps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
38 lines (33 loc) · 840 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
[package]
name = "hubcaps"
version = "0.4.2"
authors = ["softprops <[email protected]>"]
description = "Rust interface for Github"
documentation = "https://softprops.github.io/hubcaps"
homepage = "https://github.com/softprops/hubcaps"
repository = "https://github.com/softprops/hubcaps"
keywords = ["hyper", "github"]
license = "MIT"
categories = ["api-bindings", "web-programming::http-client"]
readme = "README.md"
[badges]
travis-ci = { repository = "softprops/hubcaps" }
coveralls = { repository = "softprops/hubcaps" }
[dev-dependencies]
env_logger = "0.3"
[dependencies]
futures = "0.1"
hyper = "0.11"
log = "0.3"
url = "1.6"
serde = "1.0"
serde_derive = "1.0"
serde_json = "1.0"
error-chain = "0.11"
tokio-core = "0.1"
[dependencies.hyper-tls]
optional = true
version = "0.1.2"
[features]
default = ["tls"]
tls = ["hyper-tls"]