Configuration Version Status

The package provides a malleable tree structure.

Documentation

Example

```rust let tree = configuration::format::TOML::parse(r#" message = "one"

[foo.bar]
message = "two"

[foo.baz]
answer = 42

"#).unwrap();

asserteq!(tree.get::("message").unwrap(), "one"); asserteq!(tree.get::("foo.message").unwrap(), "one"); asserteq!(tree.get::("foo.bar.message").unwrap(), "two"); asserteq!(tree.get::("foo.baz.message").unwrap(), "one");

let tree = tree.branch("foo.baz").unwrap();

assert_eq!(tree.get::("answer").unwrap(), &42); ```

Contributing

  1. Fork the project.
  2. Implement your idea.
  3. Open a pull request.