Twelf

Rust Rust Version Docs.rs

Twelf is a configuration solution for Rust including 12-Factor support. It is designed with Layers in order to configure different sources and formats to build your configuration. The main goal is to be very simple using the proc macro twelf::config.

For now it supports :

Usage

Simple with JSON and environment variables

```rust use twelf::{config, Layer};

[config]

struct Conf { test: String, another: usize, }

// Init configuration with layers, each layers override only existing fields let config = Conf::withlayers(&[ Layer::Json("conf.json".into()), Layer::Env(Some("PREFIX".to_string())) ]).unwrap(); ```

Example with clap support

```rust use twelf::{config, Layer};

[config]

struct Conf { /// Here is an example of documentation which is displayed in clap test: String, another: usize, }

// Will generate global arguments for each of your fields inside your configuration struct let app = clap::App::new("test").args(&Conf::clap_args());

// Init configuration with layers, each layers override only existing fields let config = Conf::withlayers(&[ Layer::Json("conf.json".into()), Layer::Env(Some("PREFIX".tostring())), Layer::Clap(app.getmatches().clone()) ]).unwrap();

// ... your application code ```

Use features to improve compile time

If you don't want to include useless crates if you just use 2 of all available layers you can use features without default-features, example if you use only yaml and env layer.

toml [dependencies] twelf = { version = "0.1", default-features = false, features = ["yaml"] }

Check here for more examples.

TODO:

Alternatives