| 7 | #[derive(Parser, Debug)] |
| 8 | #[command(author, version = version(), about)] |
| 9 | pub struct Cli { |
| 10 | #[arg(short, long, default_value_os_t = PathBuf::from("./"))] |
| 11 | pub dir: PathBuf, |
| 12 | } |
| 13 | |
| 14 | const VERSION_MESSAGE: &str = concat!( |
| 15 | env!("CARGO_PKG_VERSION"), |
nothing calls this directly
no outgoing calls
no test coverage detected