# Standalone downstream-consumer crate for the cycle-0011 fieldtest # (the aura-ingest data-server M1 ingestion boundary). # # Like the cycle-0007..0010 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. It additionally path-deps aura-ingest (this cycle's new # crate) and the external data-server git dep, as a project that ingests real # recorded bars would. Built/run via # cargo run --manifest-path fieldtests/cycle-0011-ingest/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 = "c0011-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" } aura-ingest = { path = "../../crates/aura-ingest" } data-server = { git = "http://192.168.178.103:3000/Brummel/data-server.git", branch = "main" } [[bin]] name = "c0011_1_transpose_core" path = "c0011_1_transpose_core.rs" [[bin]] name = "c0011_2_close_stream_run" path = "c0011_2_close_stream_run.rs" [[bin]] name = "c0011_3_load_window_real" path = "c0011_3_load_window_real.rs"