1//! Evaluation components for Jsonnet
2//!
3//! This module contains the core evaluation infrastructure that can be
4//! extended through handler-based architecture.
56pub mod context;
7pub mod handlers;
89pub use context::{Context, Scope};
10pub use handlers::*;