From d35b2bd89171c06ebd2363546dca99bcfd378017 Mon Sep 17 00:00:00 2001 From: Christian Westrom Date: Mon, 16 Dec 2024 22:51:09 +0900 Subject: [PATCH] bacon file anyone? --- bacon.toml | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 bacon.toml 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