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 {