miniconf-parser 0.1.0

Pest-powered parser and CLI for the MiniConf configuration format.
Documentation
1
2
3
4
5
6
7
8
9
mod cli;

use anyhow::Result;
use clap::Parser;

fn main() -> Result<()> {
    let cli = cli::Cli::parse();
    cli.run()
}