treer 0.1.4

Another 'tree' command provides better support for recursive searching and highlights match results.
Documentation
1
2
3
4
5
6
7
8
9
fn main() {
    match treer::cmd::root::run() {
        Ok(()) => {}
        Err(err) => {
            eprintln!("Error: {err}");
            std::process::exit(1);
        }
    }
}