boml 2.0.0

A dead-simple, efficient, dependency-free TOML parser for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
{
    "equivalent_one":      {"type": "string", "value": "The quick brown fox jumps over the lazy dog."},
    "equivalent_three":    {"type": "string", "value": "The quick brown fox jumps over the lazy dog."},
    "equivalent_two":      {"type": "string", "value": "The quick brown fox jumps over the lazy dog."},
    "escape-bs-1":         {"type": "string", "value": "a \\\nb"},
    "escape-bs-2":         {"type": "string", "value": "a \\b"},
    "escape-bs-3":         {"type": "string", "value": "a \\\\\n  b"},
    "keep-ws-before":      {"type": "string", "value": "a   \tb"},
    "no-space":            {"type": "string", "value": "ab"},
    "whitespace-after-bs": {"type": "string", "value": "The quick brown fox jumps over the lazy dog."}
}