//! Thin façade crate — re-exports `jetro_core` through a byte-oriented API.
//!
//! All parsing, optimisation, and execution live in `jetro_core`. This crate
//! provides a minimal `Jetro` handle that accepts raw JSON bytes and surfaces
//! `collect` as the single query entry point.
pub use EvalError;
/// Byte-oriented query handle. Wraps `jetro_core::Jetro` and exposes only
/// the two public entry points needed by end users: `from_bytes` and `collect`.