3 unstable releases

0.2.1 Oct 14, 2020
0.2.0 Oct 14, 2020
0.1.0 Oct 14, 2020

#21 in #git-status

Download history 10/week @ 2024-02-22 8/week @ 2024-02-29 37/week @ 2024-03-28 29/week @ 2024-04-04

66 downloads per month

ISC license

200KB
4.5K SLoC

C++ 2.5K SLoC // 0.1% comments Zsh 646 SLoC // 0.3% comments Bazel 485 SLoC // 0.0% comments Shell 376 SLoC // 0.3% comments Rust 314 SLoC // 0.1% comments

gitstatusd-rs

Rust bindings to gitstatusd

gitstatusd is a c++ binary that provides extreamly fast alternative to git status. This project is a library that make comunicating with that binary easier.

Useage

gitstatusd = "0.2"
let mut gsd = gitstatusd::SatusDaemon::new("/Users/nixon/bin/gitstatusd", ".").unwrap();
let req = gitstatusd::StatusRequest {
    id: "".to_owned(),
    dir: "/Users/nixon/dev/rs/gitstatusd".to_owned(),
    read_index:  gitstatusd::ReadIndex::ReadAll,
};
let rsp = gsd.request(req).unwrap();
assert_eq!(rsp.details.unwrap().commits_ahead, 0);

Contributing

git clone https://github.com/aDotInTheVoid/gitstatusd-rs --recurse-submodules
cd gitstatusd-rs/gitstatusd
bash ./build -w
cd ..
cargo test

A nifty trick to inspect the result of gitstatusd

echo -nE id$'\x1f'`pwd`$'\x1e' | ./gitstatusd/usrbin/gitstatusd | bat -A # or ./gs.sh

The project follows the Rust code of conduct.

License

Copyright © 2020 Nixon Enraght-Moony.
This project is ISC licensed.

No runtime deps