#shell-completion #clap #command-line #clap-parser #manpage #applications #user

clap_allgen

The complete clap generation utility to give your command-line application users a more polished experience right out of the box

2 releases

0.1.1 Apr 9, 2024
0.1.0 Jan 9, 2024

#7 in #manpage

Download history 31/week @ 2024-01-08 24/week @ 2024-01-15 2/week @ 2024-02-05 163/week @ 2024-02-12 57/week @ 2024-02-19 95/week @ 2024-02-26 56/week @ 2024-03-04 34/week @ 2024-03-11 9/week @ 2024-03-18 13/week @ 2024-03-25 15/week @ 2024-04-01 130/week @ 2024-04-08 14/week @ 2024-04-15

172 downloads per month
Used in openpgp-card-tools

Apache-2.0 OR MIT

13KB
74 lines

Clap All-Gen

CI Crates.io

The complete clap generation utility to give your command-line application users a more polished experience right out of the box.

To create all shell completions use the following command:

use clap_allgen::render_shell_completions;

#[derive(Debug, clap::Parser)]
enum Commands {
  First,
  Second,
  Third,
}

render_shell_completions::<Commands>("/tmp/shell-completions").expect("generation to work");

To generate man pages for your commands use:

use clap_allgen::render_manpages;

#[derive(Debug, clap::Parser)]
enum Commands {
  First,
  Second,
  Third,
}

render_manpages::<Commands>("/tmp/man-pages").expect("generation to work");

License

This project is licensed under either of:

at your option.

Contribution

Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in this crate by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.

Dependencies

~1.4–2MB
~37K SLoC