jql-runner 9.0.3

Runner for jql - the JSON Query Language tool.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![doc = include_str!("../README.md")]
#![doc(
    html_logo_url = "https://raw.githubusercontent.com/yamafaktory/jql/a438ab0039faf64c3329fb09bae399ae95601000/jql.svg"
)]

/// Array utilities.
mod array;
/// Parser errors.
pub mod errors;
/// Lazy tape-based evaluator.
pub mod lazy;
/// Object utilities.
mod object;
/// Runner utilities.
pub mod runner;