summaryrefslogtreecommitdiffstats
path: root/github_v3/Cargo.toml
blob: 5f5247c3b91c7d94a30066d5bd2576d894ba61a2 (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
26
27
28
29
30
[package]
name = "github_v3"
description = "Async GitHub API v3 client"
version = "0.3.1"
authors = ["Kornel <kornel@geekhood.net>"]
keywords = ["github", "restful", "api", "async"]
categories = ["web-programming", "web-programming::http-client"]
edition = "2018"
readme = "README.md"
repository = "https://gitlab.com/crates.rs/crates.rs/-/tree/master/github_v3"
homepage = "https://lib.rs/github_v3"
license = "CC0-1.0"

[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"] }
urlencoding = "1.0.0"

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

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