Expand description
Twelf
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 macrotwelf::config.
For now it supports :
- Default settings (inside your codebase with
#[serde(default = ...)]coming from serde) - Reading from
TOML,YAML,JSON,DHALL,INIfiles - Reading from environment variables: it supports
HashMapstructure withMY_VARIABLE="mykey=myvalue,mykey2=myvalue2"and also array likeMY_VARIABLE=first,secondthanks to envy. - All serde attributes can be used in your struct to customize your configuration as you wish
- Reading your configuration from your command line built with clap (ATTENTION: if you’re using version < v3 use the
twelf@1.8version)
Usage
Simple with JSON and environment variables
use twelf::{config, Layer};
#[config]
struct Conf {
test: String,
another: usize,
}
// Init configuration with layers, each layers override only existing fields
let config = Conf::with_layers(&[
Layer::Json("conf.json".into()),
Layer::Env(Some("PREFIX_".to_string()))
]).unwrap();Example with clap support
ⓘ
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::Command::new("test").args(&Conf::clap_args());
// Init configuration with layers, each layers override only existing fields
let config = Conf::with_layers(&[
Layer::Json("conf.json".into()),
Layer::Env(Some("PREFIX_".to_string())),
Layer::Clap(app.get_matches().clone())
]).unwrap();
// ... your application codeCheck here for more examples.
Features
Twelf supports crate features, if you only want support for json, env and toml then you just have to add this to your Cargo.toml
twelf = { version = "0.3", default-features = false, features = ["json", "toml", "env"] }Default features are ["env", "dhall", "clap", "ini", "json", "yaml", "toml"]
Alternatives
- config-rs is almost doing the same except the environment layer (for example we support hashmap and array in environment variables). Also
config-rsdon’t have clap support and it didn’t use any proc-macros if you’re not very fan of proc-macros.
Enums
Error generated when instantiate configuration
Layer to configure priority when instantiate configuration.
Attribute Macros
proc macro to declare a configuration structure