38 releases

0.2.24 Oct 8, 2024
0.2.23 Jul 25, 2024
0.2.22 Jun 28, 2024
0.2.20 Feb 8, 2024
0.1.2 Feb 16, 2022

#185 in Command-line interface

Download history 32077/week @ 2024-07-18 46068/week @ 2024-07-25 38483/week @ 2024-08-01 39233/week @ 2024-08-08 35292/week @ 2024-08-15 40290/week @ 2024-08-22 37794/week @ 2024-08-29 37719/week @ 2024-09-05 40740/week @ 2024-09-12 35935/week @ 2024-09-19 40912/week @ 2024-09-26 42736/week @ 2024-10-03 45257/week @ 2024-10-10 49671/week @ 2024-10-17 40388/week @ 2024-10-24 39657/week @ 2024-10-31

182,358 downloads per month
Used in 272 crates (222 directly)

MIT/Apache

115KB
663 lines

clap_mangen

Manpage generation for clap

Crates.io Crates.io License License

Dual-licensed under Apache 2.0 or MIT.

  1. About
  2. API Reference
  3. Questions & Discussions
  4. CONTRIBUTING
  5. Sponsors

About

Generate ROFF from a clap::Command.

Example

We're going to assume you want to generate your man page as part of your development rather than your shipped program having a flag to generate it.

Run

$ cargo add --build clap_mangen

In your build.rs:

fn main() -> std::io::Result<()> {
    let out_dir = std::path::PathBuf::from(std::env::var_os("OUT_DIR").ok_or(std::io::ErrorKind::NotFound)?);

    let cmd = clap::Command::new("mybin")
        .arg(clap::arg!(-n --name <NAME>))
        .arg(clap::arg!(-c --count <NUM>));

    let man = clap_mangen::Man::new(cmd);
    let mut buffer: Vec<u8> = Default::default();
    man.render(&mut buffer)?;

    std::fs::write(out_dir.join("mybin.1"), buffer)?;

    Ok(())
}

Tip: Consider a cargo xtask instead of a build.rs to reduce build costs.

Dependencies

~0.8–6MB
~28K SLoC