-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
39 lines (34 loc) · 999 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
36
37
38
39
[package]
authors = ["Xavier Lau <[email protected]>"]
categories = ["web-programming::http-client"]
description = "A modern ergonomic GitHub REST API Rust binding."
edition = "2021"
homepage = "https://githuber.hack.ink"
keywords = ["github", "github-api"]
license = "GPL-3.0"
name = "githuber"
readme = "README.md"
repository = "https://github.com/hack-ink/githuber"
version = "0.4.4"
[profile.ci-dev]
incremental = false
inherits = "dev"
[profile.ci-release]
inherits = "release"
lto = true
[dependencies]
# githuber
api-impl = { version = "0.4", path = "src/api/impl" }
[dev-dependencies]
# crates.io
anyhow = { version = "1.0" }
reqwest = { version = "0.12", features = ["json"] }
serde_json = { version = "1.0" }
tokio = { version = "1.41", features = ["macros"] }
tracing = { version = "0.1" }
tracing-subscriber = { version = "0.3" }
[workspace]
members = [
# githuber
"src/api/impl",
]