A Rust library for processing application configuration easily
This crate aims to help with reading configuration of application from files, environment variables and command line arguments, merging it together and validating. It auto-generates most of the parsing and deserializing code for you based on build configuration (heh) file. It creates a struct for you, which you can use to read configuration into. It will contain all the parsed and validated fields, so you can access the information quickly easily and idiomatically.
The generated code is formatted to be easy to read and understand.
Let's say, your application needs these parametrs to run:
First create config_spec.toml
configuration file specifying all the parameters:
```toml [[param]] name = "port" type = "u16" optional = false
doc = "Port to listen on."
[[param]] name = "bind_addr" type = "::std::net::Ipv4Addr" # Yes, this works and you can use your own types implementing Deserialize and FromStr as well! default = "::std::net::Ipv4Addr::new(0, 0, 0, 0)" # Rust expression that creates the value doc = "IP address to bind to."
[[param]] name = "tls_cert" type = "String" doc = "Path to the TLS certificate. The connections will be unsecure if it isn't provided."
```
Then, create a simple script like:
```rust extern crate configure_me;
fn main() { configureme::buildscript("config_spec.toml").unwrap(); } ```
Tip: use configure_me::build_script_with_man
to generate man page as well.
Add dependencies to Cargo.toml
:
```toml [package]
build = "build.rs"
[dependencies] configure_me = "0.3.1"
serde = "1"
[build-dependencies] configuremecodegen = "0.3.2" ```
And finally add appropriate incantiations into src/main.rs
:
```rust
extern crate configure_me;
include_config!();
fn main() { let (serverconfig, _remainingargs) = Config::includingoptionalconfigfiles(&["/etc/myawesomeserver/server.conf"]).unwrapor_exit();
// Your code here
// E.g.:
let listener = std::net::TcpListener::bind((server_config.bind_addr, server_config.port)).expect("Failed to bind socket");
} ```
This crate is unfinished and there are features I definitelly want:
clap
is a great crate that works well. Unfortunately, it doesn't support reading from config files. It also has stringly-typed API, which adds boilerplate and (arguably small, but non-zero) runtime overhead.
On the other hand, it's much more mature and supports some features, this crate doesn't (bash completion and native subcommands).
clap
may be more suitable for programs that should be easy to work with from command line, configure_me
may be better for long-running processes with a lot of configuration options.
MITNFA