1
2
3
4
5
6
7
fn main() {
    mrh::Crawler::new(".")
        .pending(true)
        .ignore_untracked(true)
        .ignore_uncommitted_repos(true)
        .for_each(|output| println!("{output:?}"));
}