From a255e74fc9ecadccd16f2d88ff3d63182a350336 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Saparelli?= Date: Sat, 17 Jun 2023 22:16:25 +1200 Subject: [PATCH] Show license and source in long help (#1149) * Show license and source in long help Ref https://github.com/oeb25/binswap/issues/2 * Typo --- crates/bin/src/args.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/crates/bin/src/args.rs b/crates/bin/src/args.rs index 7c27588c..9a90551d 100644 --- a/crates/bin/src/args.rs +++ b/crates/bin/src/args.rs @@ -24,6 +24,7 @@ use strum_macros::EnumCount; #[clap( version, about = "Install a Rust binary... from binaries!", + after_long_help = "License: GPLv3. Source available at https://github.com/cargo-bins/cargo-binstall", arg_required_else_help(true), // Avoid conflict with version_req disable_version_flag(true),