mrh 0.10.14

Crawls filesystem and displays pending status of each git repo found
Documentation
fn main() {
    mrh::Crawler::new(".")
        .pending(true)
        .ignore_untracked(true)
        .ignore_uncommitted_repos(true)
        .for_each(|output| println!("{:?}", output));
}