1 2 3 4 5 6 7 8 9 10 11 12 13 14
[env] CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true [tasks.clean] command = "cargo" args = ["clean"] [tasks.build] command = "cargo" args = ["build --release"] dependencies = ["clean"] [task.build-flow] dependencies = ["clean", "build"]