default_job = "check"
[jobs]
[jobs.check]
command = ["cargo", "check", "--color", "always"]
need_stdout = false
[jobs.check-all]
command = ["cargo", "check", "--all-targets", "--color", "always"]
need_stdout = false
watch = ["tests", "benches", "examples"]
[jobs.check-all-features]
command = ["cargo", "check-all-features", "--all-targets", "--color", "always"]
need_stdout = false
watch = ["tests", "benches", "examples"]
[jobs.clippy]
command = ["cargo", "clippy", "--color", "always"]
need_stdout = false
[jobs.clippy-all]
command = ["cargo", "clippy", "--all-targets", "--color", "always"]
need_stdout = false
watch = ["tests", "benches", "examples"]
[jobs.bench]
command = ["cargo", "bench", "--color", "always"]
need_stdout = false
watch = ["benches"]
[jobs.test]
command = ["cargo", "test", "--color", "always"]
need_stdout = true
watch = ["tests"]
[jobs.test-all-features]
command = ["cargo", "test-all-features", "--color", "always"]
need_stdout = true
watch = ["tests"]
[jobs.doc]
command = ["cargo", "doc", "--color", "always", "--no-deps"]
need_stdout = false
[jobs.doc-open]
command = ["cargo", "doc", "--color", "always", "--no-deps", "--open"]
need_stdout = false
on_success = "back"
[jobs.run]
command = ["cargo", "run", "--color", "always"]
need_stdout = true
[keybindings]
a = "job:check-all"
shift-a = "job:check-all-features"
b = "job:bench"
i = "job:initial"
c = "job:clippy"
d = "job:doc-open"
t = "job:test"
shift-t = "job:test-all-features"
r = "job:run"