Extract a value from a json string without parsing the whole thing.
bash
$ cargo add binary-extract
rust
let value = binary_extract::extract(r#"{"foo": "bar"}"#, "foo").unwrap();
assert_eq!(value, "bar");
With the object from benches/json.rs, extract()
is ~3x
faster than json::parse
.
MIT