taskflow-build 0.1.0

Build-time code generator for the taskflow DAG framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#[macro_export]
macro_rules! build_main {
    () => {
        fn main() {
            ::taskflow_build::run_with_default();
        }
    };
    (env = $env_key:literal) => {
        fn main() {
            ::taskflow_build::run_with_env($env_key);
        }
    };
}