A Rust JsonPath implementation based on the Java json-path/JsonPath project.
```rust use jsonpath::JsonPathQuery; use serdejson::json;
let object = json!({"greetings": "hello, jsonpath"}); let result = object.query("$.['greetings']").unwrap(); asserteq!(json!("hello, json_path"), result); ```