jsonpath_lib2 0.3.3

An updated fork of jsonpath_lib. The original crate has not been updated since 2021 Jun 03. It is JsonPath engine written in Rust. It provide a similar API interface in Webassembly and Javascript too. - Webassembly Demo: https://freestrings.github.io/jsonpath Feel free to transfer maintenance for this crate if I don't respond for one year. I consent to the transfer of this crate to the first person who asks help@crates.io for it.
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub use self::parser_token_handler::ParserTokenHandler;
pub use self::path_parser::PathParser;
pub use self::str_reader::StrRange;
pub use self::tokenizer::TokenError;

mod parser_node_visitor;
mod parser_token_handler;
mod path_parser;
mod str_reader;
mod tokenizer;
pub mod tokens;