giffstack 0.1.0

Stacked diffs for GitHub. CLI for managing chains/trees of dependent PRs.
[package]
name = "giffstack"
version = "0.1.0"
edition = "2021"
description = "Stacked diffs for GitHub. CLI for managing chains/trees of dependent PRs."
license = "MIT"
repository = "https://github.com/nidheesh-m-vakharia/giff"
homepage = "https://github.com/nidheesh-m-vakharia/giff"
documentation = "https://docs.rs/giffstack"
readme = "../../README.md"
keywords = ["git", "github", "stacked-diffs", "cli", "pr"]
categories = ["command-line-utilities", "development-tools"]

# Binary name kept as `giff` so the install command (`cargo install giffstack`)
# differs from the runtime command (`giff`) — matching how `ripgrep` ships `rg`.
[[bin]]
name = "giff"
path = "src/main.rs"

[dependencies]
# When publishing to crates.io, cargo uses the version field; when building locally,
# the path field wins. Both keep dev and release flows working.
giff-core   = { path = "../giff-core",   version = "0.1" }
giff-git    = { path = "../giff-git",    version = "0.1" }
giff-github = { path = "../giff-github", version = "0.1" }
anyhow = "1"
clap = { version = "4", features = ["derive"] }
crossterm = "0.27"
dirs = "5"
ratatui = "0.26"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
uuid = { version = "1", features = ["v4"] }

[dev-dependencies]
assert_cmd = "2"
predicates = "3"
tempfile = "3"