twelf 0.15.0

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 a proc macro.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
{
    test = "from file",
    another = 25,
    -- Single-line comment ${FOO}
    elements = {
        key = "value",
        key2 = "value2"
    },
    elements_def = {
        key = "value",
        key2 = "value2"
    }
}