jobflow 0.3.0

Executes jobs in order
Documentation
1
2
3
4
5
6
7
8
9
use jobflow::Flow;
use test_log::test;

#[test]
fn empty_flow() {
    // Create a background thread which checks for deadlocks every 10s
    let flow = Flow::new();
    flow.run().expect("failed to run flow");
}