
Coverage to Makefile.toml. Added branch to map! to allow for instantiating with default values.
16 lines
305 B
TOML
16 lines
305 B
TOML
[tasks.clippy]
|
|
command = "cargo"
|
|
args = ["clippy", "--all-targets", "--all-features", "--", "-D", "warnings"]
|
|
|
|
[tasks.fmt]
|
|
command = "cargo"
|
|
args = ["fmt", "--all"]
|
|
|
|
[tasks.test]
|
|
command = "cargo"
|
|
args = ["test", "--all-features"]
|
|
|
|
[tasks.coverage]
|
|
command = "cargo"
|
|
args = ["llvm-cov", "--all-features"]
|