Faster alternative to json-pp
written in Rust, using serde-json.
Reads a string from stdin
parses it as json and prints it out as a pretty json string.
cargo install json-pp-rust
$ echo "{\"hello\": [\"world\", \"json\", 10]}" | json-pp-rust
{
"hello": [
"world",
"json",
10
]
}