```none Clap App
clappconfig ```
This crate provides a simple CLI app boilerplate that takes care of the most repetitive init tasks:
Default::default()
)clap
Supports custom clap
arguments as well.
-> The repository is open to improvement PRs.
env_logger
by default--log
CLI flag-v
or --verbose
The crates re-exports crates used in public API: clap
, anyhow
, log
.
See the examples directory.
The example called "rotn" implements rot13 as a command-line tool.
```none $ cargo run --example rotn -- -h
Rot-N 0.1.0 by Ondřej Hruška ondra@ondrovo.com
USAGE:
rotn [FLAGS] [OPTIONS] --input
FLAGS: --default-config Print the default config JSON for reference (or to be piped to a file) --dump-config Print the loaded config struct -h, --help Prints help information -V, --version Prints version information -v, --verbose Increase logging verbosity (repeat to increase)
OPTIONS:
-c, --config
To get rot13 of this README, run cargo run --example rotn -- -iREADME.md
.