Configuration

The package provides a malleable tree structure.
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
- Fork the project.
- Implement your idea.
- Open a pull request.