forked from softprops/hubcaps
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (42 loc) · 1.27 KB
/
Cargo.toml
File metadata and controls
46 lines (42 loc) · 1.27 KB
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
43
44
45
46
[package]
name = "hubcaps"
version = "0.6.2"
authors = ["softprops <d.tangren@gmail.com>"]
description = "Rust interface for Github"
documentation = "https://docs.rs/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"
edition = "2024"
[badges]
maintenance = { status = "actively-developed" }
[dev-dependencies]
pretty_env_logger = "0.4"
tokio = { version = "1.0", features = ["macros", "rt-multi-thread"] }
[dependencies]
base64 = "0.22"
data-encoding = "2"
dirs = { version = "6.0", optional = true }
futures = { version = "0.3", default-features = false }
http = "1"
hyperx = { git = "https://github.com/chantra/hyperx.git", branch = "semver" }
jsonwebtoken = { version = "8", optional = true }
log = "0.4"
mime = "0.3"
percent-encoding = "2"
reqwest = { version = "0.13", default-features = false }
serde = { version = "1.0", features = ['derive'] }
serde_derive = "1.0"
serde_json = "1.0"
url = "2"
[features]
default = ["app", "default-tls"]
# enable rustls
default-tls = ["reqwest/default-tls"]
app = ["jwt"]
jwt = ["jsonwebtoken"]
# enable etag-based http_cache functionality
httpcache = ["dirs"]