rs-jsonnet 0.1.22

Pure Rust implementation of Jsonnet 0.21.0 compatible with Google Jsonnet
Documentation
1
2
3
4
5
6
7
8
9
10
//! Evaluation components for Jsonnet
//!
//! This module contains the core evaluation infrastructure that can be
//! extended through handler-based architecture.

pub mod context;
pub mod handlers;

pub use context::{Context, Scope};
pub use handlers::*;