summaryrefslogtreecommitdiffstats
path: root/github_v3/Cargo.toml
blob: d4192f9c14ecf874cc2c09c7ceb84fb13bccacab (plain)
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
[package]
name = "github_v3"
description = "Async GitHub API v3 client"
version = "0.3.1"
authors = ["Kornel <kornel@geekhood.net>"]
keywords = ["github", "rest-api", "async"]
categories = ["web-programming", "web-programming::http-client"]
edition = "2018"

[dependencies]
reqwest = { version = "0.10.1", features = ["json"] }
serde = "1.0.104"
serde_json = "1.0.47"
thiserror = "1.0.10"
serde_derive = "1.0.104"
futures = "0.3.4"
async-stream = "0.2.1"
tokio = { version = "0.2.11", features = ["time"] }

[dev-dependencies]
tokio = { version = "0.2.11", features = ["rt-threaded", "macros", "time"] }

[features]
default = ["gzip"]
gzip = ["reqwest/gzip"]