touchstone 0.12.1

Touchstone (s2p, etc.) file parser, plotter, and more
Documentation
use std::env;
use std::process;

use touchstone::cli;

fn main() {
    // Initialize tracing subscriber (controlled via RUST_LOG env var)
    // e.g. RUST_LOG=touchstone=debug touchstone files/ntwk1.s2p
    #[cfg(feature = "cli")]
    {
        use tracing_subscriber::EnvFilter;
        tracing_subscriber::fmt()
            .with_env_filter(EnvFilter::from_default_env())
            .init();
    }

    let args: Vec<String> = env::args().collect();

    let _ = cli::Config::run(&args).unwrap_or_else(|err| {
        println!();
        cli::print_error(err); //print at the top, but might be lost or hard to read
        println!();
        cli::print_help();
        println!();
        cli::print_error(err); // print error again, for human factors
        process::exit(1);
    });
}