runjucks_core 0.1.9

Pure Rust Nunjucks-compatible template engine core (Runjucks)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Async tree-walk renderer, parallel to [`crate::renderer`].
//!
//! All render/eval functions are `async fn`. The async renderer reuses
//! [`crate::renderer::CtxStack`] and [`crate::renderer::RenderState`] (owned, on the same thread).
//! Shared pure-computation helpers come from [`crate::render_common`].

pub mod entry;
mod eval;
mod loops;
mod macros;
mod nodes;

pub use entry::render_async;