neocurl 2.0.5

A command line tool to test servers
Documentation
1
2
3
4
5
6
7
8
fn main() {
    tracing_subscriber::fmt::init();

    if let Err(e) = neocurl::run() {
        tracing::error!("Error occured: {:?}", e);
        std::process::exit(1);
    }
}