[package]
edition = "2021"
rust-version = "1.88"
name = "ghzinga"
version = "0.2.1"
build = false
exclude = [
"/AGENTS.md",
"/captures/**",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Terminal UI for monitoring GitHub pull requests and issues."
homepage = "https://github.com/dutifuldev/ghzinga"
documentation = "https://docs.rs/ghzinga"
readme = "README.md"
keywords = [
"github",
"terminal",
"tui",
"pull-request",
"issues",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "MIT"
repository = "https://github.com/dutifuldev/ghzinga"
[lib]
name = "ghzinga"
path = "src/lib.rs"
[[bin]]
name = "gzg"
path = "src/main.rs"
[[bin]]
name = "ghzinga"
path = "src/bin/ghzinga.rs"
[[test]]
name = "architecture"
path = "tests/architecture.rs"
[[test]]
name = "cli_once"
path = "tests/cli_once.rs"
[dependencies.anyhow]
version = "1"
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.29"
[dependencies.ratatui]
version = "0.30"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = [
"io-util",
"macros",
"net",
"process",
"rt-multi-thread",
"sync",
"time",
]
[dependencies.toml]
version = "0.8"
[dependencies.unicode-width]
version = "0.2"
[dev-dependencies.assert_cmd]
version = "2"
[dev-dependencies.predicates]
version = "3"
[dev-dependencies.tempfile]
version = "3"