# Standalone downstream-consumer crate for the cycle-0010 fieldtest # (aura-std::Recorder + the `aura run` CLI). # # Like the cycle-0007/0008/0009 fixtures, this is NOT a member of the aura # workspace — it path-depends on the engine crates exactly as a real research # project (C16) would, and is built/run via # `cargo run --manifest-path fieldtests/cycle-0010-aura-run/Cargo.toml --bin ` # so HEAD source is always what runs. # Empty [workspace] table: marks this fixture crate as its OWN workspace root. [workspace] [package] name = "c0010-fieldtest" version = "0.0.0" edition = "2024" publish = false [dependencies] aura-core = { path = "../../crates/aura-core" } aura-engine = { path = "../../crates/aura-engine" } aura-std = { path = "../../crates/aura-std" } [[bin]] name = "c0010_1_cli_report" path = "c0010_1_cli_report.rs" [[bin]] name = "c0010_2_recorder_sink" path = "c0010_2_recorder_sink.rs" [[bin]] name = "c0010_3_recorder_four_kind" path = "c0010_3_recorder_four_kind.rs"