zenith-core 0.0.7

Zenith core: KDL parser adapter, semantic AST, canonical formatter, tokens, validation, and diagnostics.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Pure, platform-independent helper functions shared across Zenith.
//!
//! Everything here is deterministic and dependency-free: no time, no
//! randomness, no platform-specific behavior. The functions are reusable by
//! any backend (scene compilation, render, future backends) so that the same
//! inputs always yield the same bytes on every machine.

mod hash;
pub mod pattern;

pub use hash::hash_unit;
pub use pattern::{PatternLayout, pattern_positions};