A Rust library for processing application configuration easily
This library 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 you create Toml configuration file specifying all the parameters:
```toml [[param]] name = "port" type = "u16" optional = false
[[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
[[param]] name = "tls_cert" type = "String"
```
Then, you create a build script like this:
```rust extern crate configure_me;
fn main() { configureme::buildscript("config.toml").unwrap(); } ```
Add dependencies to Cargo.toml
:
```toml [packge]
build = "build.rs"
[dependencies] serde = "1" serde_derive = "1" toml = "0.4"
[build-dependencies] configure_me = "0.2.3" ```
Create a module src/config.rs
for configuration:
```rust
include!(concat!(env!("OUT_DIR"), "/config.rs")); ```
And finally add appropriate incantiations into src/main.rs
:
```rust extern crate serde;
extern crate serde_derive; extern crate toml;
mod config;
fn main() { use config::prelude:*; 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 (mainly documentation, bash completion and 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