[[]]
= "format-check"
= "rustfmt"
= ["cargo", "fmt", "--all", "--", "--check"]
[[]]
= "clippy"
= "cargo"
= ["cargo", "clippy", "--all-targets", "--message-format=json"]
[[]]
= "build"
= "cargo"
= ["cargo", "build", "--all", "--message-format=json"]
[[]]
= "test"
= "cargo"
= ["cargo", "test", "--all", "--message-format=json"]
[[]]
= "all"
= ["format-check", "clippy", "build", "test"]