5 releases (3 breaking)

Uses old Rust 2015

0.3.0 Jan 22, 2019
0.2.0 Jan 18, 2019
0.1.1 Nov 7, 2018
0.1.0 Aug 6, 2018
0.0.0 Jun 21, 2018

#343 in Text processing

Download history 7378/week @ 2023-12-23 7504/week @ 2023-12-30 5526/week @ 2024-01-06 5298/week @ 2024-01-13 4630/week @ 2024-01-20 2995/week @ 2024-01-27 3656/week @ 2024-02-03 4173/week @ 2024-02-10 4116/week @ 2024-02-17 4082/week @ 2024-02-24 3756/week @ 2024-03-02 11250/week @ 2024-03-09 13372/week @ 2024-03-16 10182/week @ 2024-03-23 8165/week @ 2024-03-30 5810/week @ 2024-04-06

39,798 downloads per month
Used in 50 crates (26 directly)

MIT/Apache

28KB
751 lines

man

crates.io version build status downloads docs.rs docs

Generate structured man pages using roff-rs.

Usage

use man::prelude::*;

fn main() {
    let page = Manual::new("basic")
        .about("A basic example")
        .author(Author::new("Alice Person").email("alice@person.com"))
        .author(Author::new("Bob Human").email("bob@human.com"))
        .flag(
            Flag::new()
                .short("-d")
                .long("--debug")
                .help("Enable debug mode"),
        )
        .flag(
            Flag::new()
                .short("-v")
                .long("--verbose")
                .help("Enable verbose mode"),
        )
        .option(
            Opt::new("output")
                .short("-o")
                .long("--output")
                .help("The file path to write output to"),
        )
        .example(
            Example::new()
                .text("run basic in debug mode")
                .command("basic -d")
                .output("Debug Mode: basic will print errors to the console")
            )
        .custom(
            Section::new("usage note")
                .paragraph("This program will overwrite any file currently stored at the output path")
        )
        .render();

    println!("{}", page);
}

Preview by running:

$ cargo run > /tmp/app.man; man /tmp/app.man

Which outputs:

BASIC(1)                                             General Commands Manual                                             BASIC(1)

NAME
       basic - A basic example

SYNOPSIS
       basic [FLAGS] [OPTIONS]

FLAGS
       -d, --debug
              Enable debug mode

       -v, --verbose
              Enable verbose mode

OPTIONS
       -o, --output=output
              The file path to write output to

USAGE NOTE
       This file will overwrite any file currently stored at the output path.

EXIT STATUS
       0      Successful program execution.

       1      Unsuccessful program execution.

       101    The program panicked.

EXAMPLES
       run basic in debug mode
              $ basic -d
              Debug Mode: basic will print errors to the console

AUTHORS
         Alice Person <alice@person.com>
         Bob Human <bob@human.com>

Installation

If using cargo-edit, install with

$ cargo add man

Otherwise, install by adding to Cargo.toml file's dependency section.

License

MIT OR Apache-2.0

Dependencies

~21KB