# Milestone fieldtest consumer crate — a standalone downstream project (as a C16 # project would be): path-deps on the engine crates + a cargo git dep on # data-server, exactly the shape aura-ingest's own manifest takes. # # It drives the full walking-skeleton thread from the PUBLIC interface only: # load_m1_window -> close_stream -> SMA-cross -> Exposure -> SimBroker # -> Recorder sinks -> f64_field -> summarize -> RunReport. # Empty [workspace] table: marks this fixture crate as its OWN workspace root, # so it does not become a member of the aura engine workspace. [workspace] [package] name = "ms-walking-skeleton-fieldtest" edition = "2024" version = "0.0.0" publish = false [[bin]] name = "real_data_thread" path = "ms_2_real_data_thread.rs" [[bin]] name = "coherence" path = "ms_3_epoch_ns_coherence.rs" [dependencies] aura-core = { path = "../../crates/aura-core" } aura-std = { path = "../../crates/aura-std" } aura-engine = { path = "../../crates/aura-engine" } aura-ingest = { path = "../../crates/aura-ingest" } data-server = { git = "http://192.168.178.103:3000/Brummel/data-server.git", branch = "main" }