# Milestone fieldtest consumer crate — Construction layer. # # A standalone downstream project (the shape a C16 research project takes): # path-deps on the engine crates only. It drives the construction layer # (Blueprint / Composite / compile / bootstrap / run) and the graph-as-data # accessors from the PUBLIC interface only — no crates/*/src was read; the # API was discovered from the design ledger (docs/design/INDEX.md) + rustdoc # doc-comments + the public re-exports. # # Empty [workspace] table: this fixture crate is its OWN workspace root, so it # is not pulled into the aura engine workspace. [workspace] [package] name = "ms-construction-layer-fieldtest" edition = "2024" version = "0.0.0" publish = false [[bin]] name = "composite_build_run" path = "mc_1_composite_build_run.rs" [[bin]] name = "miswire_render" path = "mc_2_miswire_render.rs" [[bin]] name = "nested_composite" path = "mc_3_nested_composite.rs" [[bin]] name = "introspect_graph" path = "mc_4_introspect_graph.rs" [dependencies] aura-core = { path = "../../crates/aura-core" } aura-std = { path = "../../crates/aura-std" } aura-engine = { path = "../../crates/aura-engine" }