jsonpath-rs

Crates.io docs.rs Rust CI

A Rust JsonPath implementation based on the Java json-path/JsonPath project.

Usage

```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); ```

Similar Projects