datasynth_runtime/
lib.rs

1//! # synth-runtime
2//!
3//! Runtime orchestration, parallel execution, and memory management.
4//!
5//! This crate provides two orchestrators:
6//! - `GenerationOrchestrator`: Basic orchestrator for CoA and journal entries
7//! - `EnhancedOrchestrator`: Full-featured orchestrator with all phases
8//!
9//! And support modules for:
10//! - `run_manifest`: Run metadata and reproducibility tracking
11//! - `label_export`: Anomaly label export to CSV/JSON formats
12
13pub mod enhanced_orchestrator;
14pub mod label_export;
15pub mod orchestrator;
16pub mod run_manifest;
17
18pub use enhanced_orchestrator::*;
19pub use label_export::*;
20pub use orchestrator::*;
21pub use run_manifest::*;