and back into 1 crate

This commit is contained in:
🪞👃🪞 2025-09-07 23:13:41 +03:00
parent 307dab8686
commit 5e2e0438a4
99 changed files with 934 additions and 938 deletions

View file

@ -3,24 +3,30 @@ default_job = "check"
env.CARGO_TERM_COLOR = "always"
[keybindings]
c = "job:check"
t = "job:test"
n = "job:nextest"
l = "job:clippy"
[jobs]
[jobs.check]
command = ["cargo", "check"]
need_stdout = false
watch = ["crates", "deps"]
watch = ["tek", "deps"]
[jobs.check-all]
command = ["cargo", "check", "--all-targets"]
need_stdout = false
watch = ["tek", "deps"]
[jobs.clippy]
command = ["cargo", "clippy"]
need_stdout = false
watch = ["tek", "deps"]
[jobs.clippy-all]
command = ["cargo", "clippy", "--all-targets"]
need_stdout = false
watch = ["tek", "deps"]
[jobs.test]
command = ["cargo", "test"]
need_stdout = true
watch = ["tek", "deps"]
[jobs.nextest]
command = [
"cargo", "nextest", "run",