tinyjson 2.5.1

Tiny simple JSON parser/generator
Documentation
1
2
3
4
5
6
7
8
Working examples are put in this directory. They can be run with `cargo run --example`.

```sh
echo '{"hello": "world"}' | cargo run --example parse
echo '["foo",  42,    null ]' | cargo run --example minify
cargo run --example json_value
```