[package] name = "aura-campaign" edition.workspace = true version.workspace = true license.workspace = true publish.workspace = true # Deliberately NO aura-ingest / aura-std / aura-composites: harness and data # binding enter through the one-method MemberRunner seam (src/lib.rs), so the # deploy-condemned CLI scaffolding never becomes a library dep and a # differently-binding consumer (playground, tests) implements the same seam. [dependencies] # the scalar vocabulary: params cross the MemberRunner seam as (name, Scalar) pairs. aura-core = { path = "../aura-core" } # the sweep/walk_forward orchestration machinery (metric-agnostic; RunReport # itself is generic here — the M = RunMetrics instantiation is aura-backtest's). aura-engine = { path = "../aura-engine" } # aura-backtest carries the trading instantiation (M = RunMetrics: RunReport/ # SweepFamily/SweepPoint/WindowRun aliases, RMetrics, r_bootstrap) — production # code uses it directly now (#291/#292, C28 phase 2), promoted from # [dev-dependencies]. aura-backtest = { path = "../aura-backtest" } # FamilySelection — the selection-provenance type stage selections carry. aura-analysis = { path = "../aura-analysis" } # family + campaign-run stores and the optimize/optimize_plateau/optimize_deflated selectors. aura-registry = { path = "../aura-registry" } # the campaign/process document types this crate executes. aura-research = { path = "../aura-research" } # realization payloads derive serde (the registry per-case policy, INDEX.md). serde = { workspace = true, features = ["derive"] } serde_json = { workspace = true } # rayon is admitted under the amended C16 per-case dependency policy (INDEX.md): # the campaign cell loop fans C1-disjoint cells into the same process-global # work-stealing pool the engine's run_indexed already uses — parallelism across # sims, never within one. Direct versioned dep, mirroring aura-engine. rayon = "1"