willdo 0.0.1

Task manager with DAG
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![doc = include_str!("../README.md")]
#![forbid(unsafe_code)]
#![deny(clippy::all)]
#![cfg_attr(debug_assertions,warn(missing_docs))]
#![cfg_attr(not(debug_assertions),deny(missing_docs))]

pub mod config;
pub mod execution;
pub mod graph;
pub mod job;
pub mod cli;