forked from wolf4ood/github-rs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (30 loc) · 952 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
[package]
authors = ["Michael Gattozzi <mgattozzi@gmail.com>"]
description = "Pure Rust bindings to the Github API"
name = "github-rs"
version = "0.6.1"
license = "MIT"
repository = "https://github.com/mgattozzi/github-rs.git"
homepage = "https://github.com/mgattozzi/github-rs"
documentation = "https://docs.rs/github-rs/"
[features]
default = ["rustls"]
rustls = ["hyper-rustls"]
rust-native-tls = ["native-tls", "hyper-tls"]
[badges]
travis-ci = { repository = "mgattozzi/github-rs", branch = "master" }
appveyor = { repository = "mgattozzi/github-rs", branch = "master", service = "github" }
[dependencies]
hyper = "0.12"
hyper-rustls = { version = "0.15", optional = true }
hyper-tls = { version = "0.3", optional = true }
native-tls = { version = "0.2", optional = true }
error-chain = "0.12"
tokio-core = "0.1"
futures = "0.1"
serde = "1.0"
serde_json = "1.0"
[dev-dependencies]
serde_derive = "1.0"
[workspace]
members = ["github-gql-rs"]