naveengrep 0.1.0

naveengrep is a command line tool similar to the grep
Documentation
use std::env;
use std::process;

use naveengrep::Config;

fn main() {
    let config = Config::build(env::args()).unwrap_or_else(|err| {
        eprintln!("Problem parsing arguments: {err}");
        process::exit(1);
    });

    if let Err(e) = naveengrep::run(config) {
        eprintln!("Application error: {e}");
        process::exit(1);
    }
}