[tasks.build]
command = "cargo"
args = ["build"]
dependencies = ["clean"]
[tasks.clean]
command = "cargo"
args = ["clean"]
[tasks.clippy]
install_crate = "rustfmt"
command = "cargo"
args = ["clippy"]
[tasks.fmt]
install_crate = "rustfmt"
command = "cargo"
args = ["fmt"]
[tasks.test]
command = "cargo"
args = ["test"]
dependencies = ["clean"]
[tasks.create_docs]
command = "cargo"
args = ["doc", "--no-deps"]
[tasks.docs]
command = "open"
args = ["./target/doc/pkstate/index.html"]
dependencies = ["create_docs"]
[tasks.ayce]
dependencies = [
"fmt",
"build",
"test",
"clippy",
"create_docs"
]
[tasks.default]
alias = "ayce"