[package] name = "aura-cli" edition.workspace = true version.workspace = true license.workspace = true publish.workspace = true [[bin]] name = "aura" path = "src/main.rs" [dependencies] aura-core = { path = "../aura-core" } aura-engine = { path = "../aura-engine" } # aura-composites: the Stage-1 RiskExecutor / vol_stop composite-builders the # stage1-r harness wires (kept out of aura-engine so the engine stays domain-free). aura-composites = { path = "../aura-composites" } aura-registry = { path = "../aura-registry" } aura-std = { path = "../aura-std" } aura-ingest = { path = "../aura-ingest" } # data-server: the local M1 archive `aura run --real` streams from. Mirrors the # git line in crates/aura-ingest/Cargo.toml verbatim (same source of truth). data-server = { git = "http://192.168.178.103:3000/Brummel/data-server.git", branch = "main" } # serde derives Serialize on the chart-trace payload (Series) so render_chart_html # can embed it via serde_json::json!; admitted under the per-case dependency policy, # same as aura-engine. serde = { workspace = true } # serde_json renders the walk-forward summary line (MetricStats + stitched total) # and the injected chart traces (window.AURA_TRACES); # admitted under the per-case dependency policy, same as aura-engine. serde_json = { workspace = true }