j9 0.1.4

Rust interface for jq-based JSON processing
Documentation
1
2
3
4
5
6
7
8
use j9;

fn main() -> anyhow::Result<()> {
    let json_str = r#"{ "number": 1 }"#;
    let jq = j9::run(".", json_str)?;
    println!("{:?}", jq);
    Ok(())
}