67 releases (18 breaking)

new 0.25.8 Jan 28, 2025
0.24.10 Jan 24, 2025
0.23.3 Dec 24, 2024
0.21.2 Nov 28, 2024
0.8.4 Mar 22, 2024

#496 in Command line utilities

Download history 1/week @ 2024-10-07 181/week @ 2024-10-14 199/week @ 2024-10-21 4/week @ 2024-10-28 50/week @ 2024-11-04 826/week @ 2024-11-18 639/week @ 2024-11-25 286/week @ 2024-12-02 85/week @ 2024-12-09 261/week @ 2024-12-16 497/week @ 2024-12-23 6/week @ 2024-12-30 997/week @ 2025-01-06 104/week @ 2025-01-13 327/week @ 2025-01-20

1,463 downloads per month

GPL-3.0-or-later

240KB
6K SLoC

Documentation-only module containing the help pages for the CLI tool.

The Args struct contains the top level options. The Action enum contains the top level subcommands. Beyond that, *Args structs contain options for that level, and *Action enums contain subcommands below that level. In structs, field names are generally transformed to options using by being kebab-cased.

For example, caddy::configure_tamanu::ConfigureTamanuArgs represents the subcommand:

$ bestool caddy configure-tamanu

and its fields:

pub struct ConfigureTamanuArgs {
    pub path: PathBuf,
    pub print: bool,
    pub domain: String,
    pub api_port: NonZeroU16,
    pub api_version: String,
    pub web_version: String,
    pub email: Option<String>,
    pub zerossl_api_key: Option<String>,
}

are transformed into these options:

--path
--print
--domain
--api-port
--api-version
--web-version
--email
--zerossl-api-key

Sometimes more information is contained in the #[clap()] attributes like defaults and positionals, and these can be seen by clicking the source link at the top right.

Dependencies

~22–81MB
~1.5M SLoC