diff options
| author | Fuwn <[email protected]> | 2022-03-09 03:01:28 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-03-09 03:01:28 -0800 |
| commit | e6d31b57b1961bc5f9c0d98dee37de7f40277f23 (patch) | |
| tree | a7d2d0e6ee825861a633d2b23221dd42664bbc5e /Makefile.toml | |
| download | senpy-rs-e6d31b57b1961bc5f9c0d98dee37de7f40277f23.tar.xz senpy-rs-e6d31b57b1961bc5f9c0d98dee37de7f40277f23.zip | |
feat(senpy): 0.1.0 :star:
Diffstat (limited to 'Makefile.toml')
| -rw-r--r-- | Makefile.toml | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/Makefile.toml b/Makefile.toml new file mode 100644 index 0000000..093273a --- /dev/null +++ b/Makefile.toml @@ -0,0 +1,32 @@ +# ------------ +# | Wrappers | +# ------------ +[tasks.fmt] +command = "cargo" +args = ["fmt"] +private = true + +[tasks.check] +command = "cargo" +args = ["check"] +private = true + +[tasks.clippy] +command = "cargo" +args = ["clippy"] +private = true + +# ------------- +# | Executors | +# ------------- +[tasks.checkf] +dependencies = ["fmt", "check"] + +[tasks.checkfc] +dependencies = ["fmt", "check", "clippy"] + +[tasks.docs] +workspace = false +toolchain = "nightly" +command = "cargo" +args = ["doc", "--open", "--document-private-items", "--no-deps"] |