jsonata-rs 0.3.4

An (incomplete) implementation of JSONata in Rust
Documentation
{
    "expr": "$zip([1,2,3],[4,5,6])",
    "dataset": null,
    "bindings": {},
    "result": [
        [
            1,
            4
        ],
        [
            2,
            5
        ],
        [
            3,
            6
        ]
    ]
}