forked from XAMPPRocky/octocrab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
42 lines (38 loc) · 1.39 KB
/
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
[package]
name = "octocrab"
version = "0.15.4"
authors = ["XAMPPRocky <[email protected]>"]
edition = "2018"
readme = "README.md"
homepage = "https://github.com/XAMPPRocky/octocrab"
repository = "https://github.com/XAMPPRocky/octocrab.git"
description = "A modern, extensible GitHub API client."
license = "Apache-2.0/MIT"
documentation = "https://docs.rs/octocrab"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
[dependencies]
reqwest = { version = "0.11.3", default-features = false, features = ["json"] }
serde = { version = "1.0.126", features = ["derive"] }
serde_json = "1.0.64"
serde_path_to_error = "0.1.4"
async-trait = "0.1.50"
chrono = { version = "0.4.19", features = ["serde"] }
url = { version = "2.2.2", features = ["serde"] }
hyperx = "1.3.0"
snafu = { version = "0.7", features = ["backtraces"] }
once_cell = "1.7.2"
arc-swap = "1.3.0"
base64 = "0.13.0"
bytes = "1.0.1"
jsonwebtoken = "7"
futures-core = { version = "0.3.15", optional = true }
futures-util = { version = "0.3.15", optional = true }
[dev-dependencies]
tokio = { version = "1.6.1", default-features = false, features = ["macros", "rt-multi-thread", "time"] }
wiremock = "0.5.3"
[features]
default = ["reqwest/native-tls"]
rustls = ["reqwest/rustls-tls"]
stream = ["futures-core", "futures-util", "reqwest/stream"]