From 74e3037cb90b6ab03b5dfce96aa06ccc4ae47973 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Mon, 9 Nov 2020 17:12:20 +0530 Subject: [PATCH] cli: load authors automatically Signed-off-by: Harsh Shandilya --- src/cli.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/cli.rs b/src/cli.rs index 467702a..c20f010 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -1,7 +1,7 @@ -use clap::{crate_version, Clap}; +use clap::{crate_authors, crate_version, Clap}; #[derive(Clap)] -#[clap(version = crate_version!(), author = "Harsh Shandilya ")] +#[clap(version = crate_version!(), author = crate_authors!())] pub(crate) struct Opts { #[clap(subcommand)] pub(crate) subcommand: SubCommand,