-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
27 lines (24 loc) · 925 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
[package]
name = "github-status"
version = "1.2.0"
edition = "2021"
authors = ["Paul Sanders <[email protected]>"]
description = "github-status is a CLI to check the status of GitHub."
documentation = "https://github.com/sanders41/github-status"
homepage = "https://github.com/sanders41/github-status"
repository = "https://github.com/sanders41/github-status"
readme = "README.md"
exclude = ["assets/*"]
keywords = ["github", "status", "command-line", "cli"]
categories = ["command-line-utilities"]
license = "MIT"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0.93"
clap = { version = "4.5.21", features = ["color", "suggestions", "derive"] }
colored = "2.1.0"
pager = "0.16.1"
reqwest = { version = "0.12.9", features = ["blocking", "json"] }
serde = { version = "1.0.216", features = ["derive"] }
[dev-dependencies]
serde_json = "1.0.133"