procon 0.2.6

Procon (Pro)perty (Con)verter A program to convert between different property formats.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extern crate exitcode;

use clap::CommandFactory;
use log::{error, info};
use procon::args::Args;
use std::process;

use procon::run;

fn main() {
    let message = run().unwrap_or_else(|err| {
        error!("{}", err.to_string());
        Args::command().print_help().unwrap();
        process::exit(exitcode::CONFIG);
    });
    info!("{}", message);
}