From 3c8746a4e47124cccc41ccf45cc58ba00af64fc5 Mon Sep 17 00:00:00 2001 From: Hatter Jiang Date: Tue, 29 Mar 2022 00:37:27 +0800 Subject: [PATCH] chore: for card-cli --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index 16018d9..a646211 100644 --- a/src/main.rs +++ b/src/main.rs @@ -26,7 +26,7 @@ impl DefaultCommandImpl { app } pub fn run(_arg_matches: &ArgMatches) -> CommandError { - information!("WebAuthn(OpenPGP) cli, use --help for help"); + information!("Card(WebAuthn, OpenPGP, YubiKey) cli, use --help for help"); Ok(None) } } @@ -54,7 +54,7 @@ fn inner_main() -> CommandError { let mut app = App::new(env!("CARGO_PKG_NAME")) .version(env!("CARGO_PKG_VERSION")) .about(env!("CARGO_PKG_DESCRIPTION")) - .long_about("Webauthn Cli is a command tool register and sign using FIDO security key") + .long_about("Card Cli is a command tool for WebAuthn, OpenPGP, YubiKey ... smart cards") .setting(AppSettings::ColoredHelp); app = DefaultCommandImpl::process_command(app); for command in &commands {