hotel-service/Makefile.toml
Martin Berg Alstad 5d5e6393ac First working API.
Simple auth by creating sessions and storing in db
2024-08-29 16:43:04 +02:00

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"]