macroonz 0.1.0

Code generation that proves what it made, plus a harness for property, fuzz, fault, schedule, mutation, and benchmark testing.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! The module-preserving front door to the complete Macroonz machine.
//!
//! [`compiler`] bakes a complete generation request, [`macros`] carries the built-in procedural declaration doors, and the feature-gated `harness` module judges what a caller hands it.
//! The facade adds no second API and flattens no owner's vocabulary: every item remains under the crate that defines it.

/// The ordinary callable generation compiler.
pub use macroonz_compiler as compiler;

/// The built-in procedural declaration doors.
pub use macroonz_macros as macros;

/// The independent test harness.
#[cfg(feature = "harness")]
pub use macroonz_harness as harness;