/ bacon.toml
bacon.toml
 1  default_job = "run"
 2  
 3  [jobs.run]
 4  command = [
 5      "cargo", "run",
 6      "--color", "always",
 7      "--bin", "worker",
 8  ]
 9  need_stdout = true
10  allow_warnings = true
11  background = false
12  on_change_strategy = "kill_then_restart"
13  
14  [jobs.test]
15  command = [
16      "cargo", "nextest", "run",
17      "--color", "always",
18  ]
19  need_stdout = true
20  analyzer = "nextest"