gitstatus 1.0.0

Does one thing incredibly well: tells you your current branch, origin branch and the number of changes. Perfect for large repositories / monorepos
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
[package]
name = "gitstatus"
version = "1.0.0"
edition = "2021"
description = "Does one thing incredibly well: tells you your current branch, origin branch and the number of changes. Perfect for large repositories / monorepos"
license = "GPL-3.0-only"
repository = "https://github.com/stephenyu/gitstatus"
rust-version = "1.70"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
gix = { version = "0.73.0", features = ["status", "parallel"] }
anyhow = "1.0"
clap = { version = "4.0", features = ["derive"] }
bstr = "1.0"