From c8df3286df2051a63c954a682599e8673254c29e Mon Sep 17 00:00:00 2001 From: Andrew Gunnerson Date: Thu, 7 Sep 2023 13:37:24 -0400 Subject: [PATCH] Add --version option Issue: #138 Signed-off-by: Andrew Gunnerson --- avbroot/src/cli/args.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/avbroot/src/cli/args.rs b/avbroot/src/cli/args.rs index 116c7e0..32d30ae 100644 --- a/avbroot/src/cli/args.rs +++ b/avbroot/src/cli/args.rs @@ -28,6 +28,7 @@ pub enum Command { } #[derive(Debug, Parser)] +#[command(version)] pub struct Cli { #[command(subcommand)] pub command: Command,