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