use clap::Parser; #[derive(Parser, Debug)] #[command(author, version, about, long_about = None)] pub struct Args { pub text: String, #[arg(long)] pub debug_tokens: bool, }