ronq 0.1.1

ron query cli utility
1
2
3
4
5
6
7
8
9
10
11
12
use clap::Parser;

#[derive(Parser, Debug)]
#[command(name = "ronq")]
pub struct Args {
    /// Path to the RON file; if not provided, reads from stdin
    #[arg(long, short)]
    pub file: Option<String>,

    /// Dot-separated key path
    pub key: Option<String>,
}