34 releases

0.2.20 Feb 8, 2024
0.2.18 Jan 29, 2024
0.2.16 Dec 28, 2023
0.2.15 Oct 24, 2023
0.1.2 Feb 16, 2022

#192 in Command-line interface

Download history 19962/week @ 2023-12-23 22930/week @ 2023-12-30 26416/week @ 2024-01-06 27661/week @ 2024-01-13 26750/week @ 2024-01-20 29759/week @ 2024-01-27 33438/week @ 2024-02-03 28774/week @ 2024-02-10 29760/week @ 2024-02-17 27201/week @ 2024-02-24 29082/week @ 2024-03-02 28846/week @ 2024-03-09 24781/week @ 2024-03-16 31331/week @ 2024-03-23 30002/week @ 2024-03-30 23083/week @ 2024-04-06

113,379 downloads per month
Used in 196 crates (174 directly)

MIT/Apache

105KB
673 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–1.6MB
~29K SLoC