40 releases

0.2.26 Jan 10, 2025
0.2.24 Oct 8, 2024
0.2.23 Jul 25, 2024
0.2.20 Feb 8, 2024
0.1.2 Feb 16, 2022

#129 in Command-line interface

Download history 44412/week @ 2024-10-09 50499/week @ 2024-10-16 40985/week @ 2024-10-23 39752/week @ 2024-10-30 40368/week @ 2024-11-06 46498/week @ 2024-11-13 39494/week @ 2024-11-20 42692/week @ 2024-11-27 40878/week @ 2024-12-04 39518/week @ 2024-12-11 34705/week @ 2024-12-18 86614/week @ 2024-12-25 42437/week @ 2025-01-01 56582/week @ 2025-01-08 50349/week @ 2025-01-15 45392/week @ 2025-01-22

201,423 downloads per month
Used in 279 crates (241 directly)

MIT/Apache

110KB
622 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