mahler_core/lib.rs
1#![cfg_attr(docsrs, feature(doc_cfg))]
2
3mod path;
4mod planner;
5mod system;
6
7pub mod errors;
8pub mod extract;
9pub mod state;
10pub mod task;
11pub mod worker;
12pub mod workflow;
13
14// TODO: this should not be exported from this crate.
15// It would more sense to re-export it, including the seq
16// and dag macros, from a "mahler-test" crate
17pub use workflow::Dag;