jpx-core: A complete JMESPath implementation using serde_json::Value.
This crate provides a JMESPath parser, interpreter, and runtime that works
directly with serde_json::Value, eliminating the need for a separate
Variable type and the conversion overhead that comes with it.
Quick Start
use compile;
use json;
let expr = compile.unwrap;
let data = json!;
let result = expr.search.unwrap;
assert_eq!;