diff --git a/bacon.toml b/bacon.toml new file mode 100644 index 00000000..6557e0a9 --- /dev/null +++ b/bacon.toml @@ -0,0 +1,18 @@ +default_job = "build" +env.CARGO_TERM_COLOR = "always" + +[jobs.build] +command = ["cargo", "repbuild", "build"] +need_stdout = false + +[jobs.run] +command = ["cargo", "repbuild", "run", "--release"] +need_stdout = false + +[jobs.check] +command = ["cargo", "check"] +need_stdout = false + +[jobs.clippy-all] +command = ["cargo", "clippy", "--all-targets"] +need_stdout = false