jsonpath_rs
A JSONPath library for rust. The idea behind this library is that it can operate on any json representation as long as it implements the SelectValue
triat. The library has an implementation for serde_json value and ivalue.
Getting Started
Add the following to your cargo.toml
=
jsonpath_rs
Usage example:
extern crate jsonpath_rs
extern crate serde_json;
Tests
jsonpath_rs
pass Almost all the tests on https://github.com/freestrings/jsonpath, to run the tests:
cargo test