clappconfig - CLI app config boilerplate

```none Clap App

Config

clappconfig ```

This crate provides a simple CLI app boilerplate that takes care of the most repetitive init tasks:

Supports custom clap arguments as well.

-> The repository is open to improvement PRs.

Logging

Example

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 Sets a custom config file (JSON5) -i, --input Input file --log Set logging verbosity (error,warning,info,debug,trace) -n, --shift Positive or negative shift, default 13 ```

To get rot13 of this README, run cargo run --example rotn -- -iREADME.md.