diff options
| author | Fuwn <[email protected]> | 2022-07-31 17:34:09 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-07-31 17:34:16 +0000 |
| commit | ae81292908fd049365b9ff582727e0227af8563e (patch) | |
| tree | fe376d5bc148a9691e1c57278c71ac383538d639 /Makefile.toml | |
| parent | docs(README.md): add nightly toolchain notice (diff) | |
| download | windmark-0.1.20.tar.xz windmark-0.1.20.zip | |
feat: drop rust nightly requirement!!!v0.1.20
Diffstat (limited to 'Makefile.toml')
| -rw-r--r-- | Makefile.toml | 18 |
1 files changed, 6 insertions, 12 deletions
diff --git a/Makefile.toml b/Makefile.toml index ef78a0e..525424a 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -1,24 +1,18 @@ -# ------------ -# | Wrappers | -# ------------ [tasks.fmt] -command = "cargo" args = ["fmt"] -private = true +command = "cargo" +toolchain = "nightly" [tasks.check] -command = "cargo" args = ["check"] -private = true +command = "cargo" +toolchain = "nightly" [tasks.clippy] -command = "cargo" args = ["clippy"] -private = true +command = "cargo" +toolchain = "nightly" -# ------------- -# | Executors | -# ------------- [tasks.checkf] dependencies = ["fmt", "check"] |