jsonpath-rust 0.2.1

The library provides the basic functionality to find the set of the data according to the filtering query.
Documentation
1
2
3
4
5
6
7
8
//! The parser for the jsonpath.
//! The module grammar denotes the structure of the parsing grammar

pub(crate) mod model;
#[allow(clippy::module_inception)]
pub(crate) mod parser;
mod macros;