djson 0.1.0

Easily Access Dynamic JSON in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
    "one": 1,
    "two": "2",
    "three": {
        "zero": true,
        "one": 1,
        "two": "2"
    },
    "four": [
        1,
        "2",
        {
            "one": 1
        }
    ]
}