[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" } # RunReport (the member result type) + the sweep/walk_forward orchestration machinery. aura-engine = { path = "../aura-engine" } # 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 }