# Standalone downstream-consumer crate for the cycle-0007 fieldtest. # # It 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 via # `cargo run --manifest-path fieldtests/cycle-0007-signal-quality/Cargo.toml --bin ` # so HEAD source is always what runs. # Empty [workspace] table: marks this fixture crate as its OWN workspace root # (the cycle-0006 fieldtest recorded this resolver-fight as friction; same fix here). [workspace] [package] name = "c0007-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 = "c0007_1_single_signal_quality" path = "c0007_1_single_signal_quality.rs" [[bin]] name = "c0007_2_exposure_clamp" path = "c0007_2_exposure_clamp.rs" [[bin]] name = "c0007_3_pip_size_scale" path = "c0007_3_pip_size_scale.rs" [[bin]] name = "c0007_4_combine_two_signals" path = "c0007_4_combine_two_signals.rs"