1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
//! The recipe entrance and module-preserving front door to the complete Macroonz machine.
//!
//! `macroonz::recipe!` is the one root workflow entrance for ordinary Rust, declared structure, and requested projections.
//! [`compiler`] remains the callable expert owner, [`macros`] carries procedural doors, and the feature-gated `harness` module judges what a caller hands it.
//! The facade flattens no owner's expert vocabulary, and removing the harness feature makes only harness-owned evidence projections unavailable.
/// The ordinary callable generation compiler.
pub use macroonz_compiler as compiler;
/// The built-in procedural declaration doors.
pub use macroonz_macros as macros;
/// Bakes one ordinary Rust module from its declared structure and requested projections.
///
/// This is the only supported root recipe entrance.
/// Its procedural carrier is public only because Rust requires a public proc-macro entry behind this hygienic facade wrapper; direct carrier invocation is outside the compatibility contract.
///
/// # Example
///
/// Bakes one ordinary Rust module from its declared structure and requested projections.
///
/// This is the only supported root recipe entrance.
/// Harness-owned projections produce a typed declaration refusal in this facade posture.
/// Its procedural carrier is public only because Rust requires a public proc-macro entry behind this hygienic facade wrapper; direct carrier invocation is outside the compatibility contract.
///
/// # Example
///
/// The independent test harness.
pub use macroonz_harness as harness;