28 lines
426 B
TOML
28 lines
426 B
TOML
[tasks.fmt]
|
|
command = "cargo"
|
|
args = ["fmt"]
|
|
|
|
[tasks.lint]
|
|
command = "cargo"
|
|
args = ["clippy"]
|
|
|
|
[tasks.release]
|
|
command = "cargo"
|
|
args = ["build", "--release"]
|
|
|
|
[tasks.run_migrations]
|
|
command = "diesel"
|
|
args = ["migration", "run"]
|
|
|
|
[tasks.redo_migrations]
|
|
command = "diesel"
|
|
args = ["migration", "redo"]
|
|
|
|
[tasks.test]
|
|
command = "cargo"
|
|
args = ["test", "--all-features"]
|
|
|
|
[tasks.coverage]
|
|
command = "cargo"
|
|
args = ["llvm-cov"]
|