I am creating a CLI in rust...how can I go about using an ArgGroup with the derive CLI.
Note: I do not mean with the builder function.
Here is something like what I am looking for:
#[derive(Parser, Debug)]
#[command(version, about, long_about = None)]
struct Cli {
input: String,
output: String,
#[arg_group = "group"]
flag1: bool,
#[arg_group = "group"]
flag2: bool,
}