pub use ::jq::*;
#[cfg(feature = "std")]
pub fn x_profile() -> &'static JsonFilter {
use std::sync::OnceLock;
static ONCE: OnceLock<JsonFilter> = OnceLock::new();
ONCE.get_or_init(|| include_str!("jq/x_profile.jq").parse().unwrap())
}
#[cfg(not(feature = "std"))]
pub fn x_profile() -> JsonFilter {
include_str!("jq/x_profile.jq").parse().unwrap()
}