[package]
name = "gg-stack"
version = "0.1.2"
edition = "2021"
description = "A stacked-diffs CLI tool (gg) for GitHub and GitLab"
authors = ["Nacho Lopez"]
license = "MIT"
repository = "https://github.com/mrmans0n/git-gud"
homepage = "https://github.com/mrmans0n/git-gud"
keywords = ["git", "stacked-diffs", "github", "gitlab", "cli"]
categories = ["command-line-utilities", "development-tools"]
readme = "README.md"
[[bin]]
name = "gg"
path = "src/main.rs"
[dependencies]
clap = { version = "4", features = ["derive"] }
clap_complete = "4"
git2 = { version = "0.20", features = ["default"] }
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tokio = { version = "1", features = ["full"] }
indicatif = "0.18"
console = "0.16"
dialoguer = { version = "0.12", features = ["fuzzy-select"] }
skim = "0.20"
anyhow = "1"
thiserror = "2"
uuid = { version = "1", features = ["v4"] }
regex = "1"
ctrlc = "3"
atty = "0.2"
git-absorb = "0.8"
slog = "2"
slog-term = "2"
slog-async = "2"
[dev-dependencies]
tempfile = "3"