Files
Aura/crates/aura-ingest/Cargo.toml
T
claude b39fd63396 refactor: split the aura-std roster into C28 layer crates
Phase 4 of the Stratification milestone. aura-std held four C28 ladder
layers in one roster; this cuts them into layer-aligned, aura-core-only
node crates so the import direction is enforced by the crate graph:

- aura-std        — engine nodes only (arithmetic/logic/rolling + sinks)
- aura-market     — session, resample
- aura-strategy   — bias, stops, sizer, cost-model machinery
- aura-backtest   — sim_broker, position_management
- aura-vocabulary — the relocated closed std_vocabulary roster

Node modules move verbatim (byte-identical renames); consumers are
rewired by import path only. A new structural test
(aura-vocabulary/tests/c28_layering.rs) asserts each node crate's
[dependencies] stay within its C28-permitted inner set, catching the
acyclic-but-outward violation the compiler misses.

Behaviour byte-identical: full workspace suite green (1448 tests), no
golden edited, clippy -D warnings clean. C28 Status block updated.

closes #288
2026-07-19 20:28:20 +02:00

38 lines
1.8 KiB
TOML

[package]
name = "aura-ingest"
edition.workspace = true
version.workspace = true
license.workspace = true
publish.workspace = true
[dependencies]
aura-core = { path = "../aura-core" }
# data-server: aura's first real data source. It enters the workspace at the
# ingestion edge (transitively chrono + regex + zip). Dependencies are admitted
# by the amended C16 per-case policy (INDEX.md), not a blanket zero-dep wall.
data-server = { git = "http://192.168.178.103:3000/Brummel/data-server.git", branch = "main" }
# M1FieldSource impls aura_engine::Source in the lib, so the engine is a regular
# (non-dev) dependency.
aura-engine = { path = "../aura-engine" }
[dev-dependencies]
# zip: hand-packs a tiny synthetic M1 archive (lib.rs's own unit tests, #252's
# archive_extent gap-walk coverage) in the exact on-disk format data-server
# reads — already transitive via the data-server dependency above (a normal,
# non-dev dependency there); declared directly here so test code may `use
# zip::...` (mirrors aura-cli's tests/common/mod.rs, no new dependency
# actually enters the build graph).
zip = "2"
# the integration tests bootstrap a sample harness + fold a RunReport
aura-std = { path = "../aura-std" }
aura-market = { path = "../aura-market" }
aura-strategy = { path = "../aura-strategy" }
aura-backtest = { path = "../aura-backtest" }
# chrono / chrono-tz build the Berlin-local-wall-clock window bounds + the
# Session node's timezone for the real GER40 session-breakout example/test
# (examples/ger40_breakout_real.rs, tests/ger40_breakout_real.rs). Pinned to
# aura-std's / aura-engine's versions (the same DST-aware wall-clock math),
# test-only — never on the ingestion crate's normal path.
chrono = { version = "0.4", default-features = false, features = ["clock"] }
chrono-tz = { version = "0.10", default-features = false }