boml 2.0.0

A dead-simple, efficient, dependency-free TOML parser for Rust.
Documentation
{
    "empty1":   {},
    "empty2":   {},
    "with_cmt": {},
    "empty_in_array": [
        {
            "not_empty": {"type": "integer", "value": "1"}
        },
        {}
    ],
    "empty_in_array2": [
        {},
        {
            "not_empty": {"type": "integer", "value": "1"}
        }
    ],
    "many_empty": [
        {},
        {},
        {}
    ],
    "nested_empty": {
        "empty": {}
    }
}