[tasks.test]
args = [
"nextest",
"run",
"--workspace",
"--status-level",
"all",
"--test-threads=1",
]
command = "cargo"
install_crate = { crate_name = "cargo-nextest", binary = "cargo", test_arg = [
"nextest",
"--help",
] }
[tasks.fmt]
args = ["fmt", "--all"]
command = "cargo"
[tasks.fmt-check]
args = ["fmt", "--all", "--check"]
command = "cargo"
[tasks.lint]
args = ["clippy", "--all-targets", "--all-features", "--", "-D", "warnings"]
command = "cargo"
[tasks.doctest]
args = ["test", "--doc", "--all-features"]
command = "cargo"
[tasks.ci]
dependencies = ["fmt-check", "lint", "test", "doctest"]