mahler-core 0.21.2

An automated job orchestration library that builds and executes dynamic workflows
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![cfg_attr(docsrs, feature(doc_cfg))]

mod path;
mod planner;
mod system;

pub mod errors;
pub mod extract;
pub mod state;
pub mod task;
pub mod worker;
pub mod workflow;

// TODO: this should not be exported from this crate.
// It would more sense to re-export it, including the seq
// and dag macros, from a "mahler-test" crate
pub use workflow::Dag;