Files
zero2prod/Makefile.toml
2024-02-26 12:47:27 +01:00

26 lines
403 B
TOML

[tasks.format]
install_crate = "rustfmt"
command = "cargo"
args = ["fmt", "--", "--emit=files"]
[tasks.lint]
install_crate = "rust-clippy"
command = "cargo"
args = ["clippy"]
[tasks.fmtclip]
dependencies = [
"format",
"lint"
]
[tasks.machete]
install_crate = "cargo-machete"
command = "cargo"
args = ["machete"]
[tasks.audit]
install_crate = "cargo-audit"
command = "cargo"
args = ["audit"]