4 releases

0.1.3 Aug 31, 2022
0.1.2 Aug 31, 2022
0.1.1 Aug 30, 2022
0.1.0 Aug 30, 2022

#2358 in Parser implementations

Download history 24/week @ 2023-11-27 3/week @ 2023-12-11 6/week @ 2024-01-15 277/week @ 2024-02-19 243/week @ 2024-02-26 83/week @ 2024-03-04 52/week @ 2024-03-11

655 downloads per month
Used in drawbridge

Apache-2.0

17KB
349 lines

Description

confargs is a Rust library, which parses a configuration file in arbitrary format into a iterator of command-line arguments. The main use case for this is to add configuration file support for CLI tools and argument parsers, which do not have support for configuration files.

Compatibility

This project primarily aims at compatibility with clap, which is tested automatically in CI. Other libraries should work as well, but that is not tested.

Examples

Examples are provided in examples directory along an example configuration files in supported formats.

clap

From the root of the repository:

$ cargo run -q --example clap    
Args { string: "string", integer: 42, float: 42.2, array: [] }
$ cargo run -q --example clap -- @examples/conf.toml
Args { string: "conf", integer: -42, float: -42.2, array: ["test", "config"] }

lib.rs:

Parse a configuration file in arbitrary format into a iterator of command-line arguments.

The main use case for this crate is to add configuration file support for CLI tools and argument parsers, which do not have support for configuration files (for example, clap)

Dependencies

~335–610KB
~13K SLoC