45 releases

0.2.31 Oct 22, 2025
0.2.29 Jul 29, 2025
0.2.26 Jan 10, 2025
0.2.24 Oct 8, 2024
0.1.2 Feb 16, 2022

#198 in Command-line interface

Download history 93083/week @ 2025-10-26 88221/week @ 2025-11-02 93135/week @ 2025-11-09 92654/week @ 2025-11-16 108029/week @ 2025-11-23 108520/week @ 2025-11-30 122946/week @ 2025-12-07 120507/week @ 2025-12-14 117663/week @ 2025-12-21 156757/week @ 2025-12-28 164370/week @ 2026-01-04 149562/week @ 2026-01-11 172008/week @ 2026-01-18 154304/week @ 2026-01-25 174289/week @ 2026-02-01 154368/week @ 2026-02-08

676,262 downloads per month
Used in 421 crates (358 directly)

MIT/Apache

120KB
747 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.7–1.6MB
~30K SLoC