bacon file anyone?

This commit is contained in:
Christian Westrom 2024-12-16 22:51:09 +09:00
parent ded53aa08a
commit d35b2bd891

18
bacon.toml Normal file
View file

@ -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