asimov-x-module 0.2.4

ASIMOV module.
Documentation
1
2
3
4
5
6
7
8
// This is free and unencumbered software released into the public domain.
pub use ::jq::*;

pub fn x_list() -> &'static JsonFilter {
    use std::sync::OnceLock;
    static ONCE: OnceLock<JsonFilter> = OnceLock::new();
    ONCE.get_or_init(|| include_str!("jq/x_list.jq").parse().unwrap())
}