ezu-graph 0.3.0

Typed DAG evaluator for the Ezu Style Spec
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Crate-internal unit tests. Split by concern:
//!
//! - [`topology`] — `GraphBuilder` topo / type-check / pad propagation
//! - [`build`] — JSON `Document` → typed graph via `build_graph`
//! - [`eval`] — `Evaluator` + cache reuse
//!
//! Shared mock nodes live in [`common`].

mod build;
mod common;
mod eval;
mod topology;