gg-stack 0.1.2

A stacked-diffs CLI tool (gg) for GitHub and GitLab
[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]
# CLI
clap = { version = "4", features = ["derive"] }
clap_complete = "4"

# Git
git2 = { version = "0.20", features = ["default"] }

# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"

# Async runtime (for glab subprocess handling)
tokio = { version = "1", features = ["full"] }

# Terminal UI
indicatif = "0.18"
console = "0.16"
dialoguer = { version = "0.12", features = ["fuzzy-select"] }
skim = "0.20"

# Error handling
anyhow = "1"
thiserror = "2"

# Utilities
uuid = { version = "1", features = ["v4"] }
regex = "1"
ctrlc = "3"
atty = "0.2"

# Absorb (library integration)
git-absorb = "0.8"
slog = "2"
slog-term = "2"
slog-async = "2"

[dev-dependencies]
tempfile = "3"