diff options
| author | Fuwn <[email protected]> | 2022-08-27 22:29:06 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-08-27 22:29:06 -0700 |
| commit | 83fc1aab2e15f60b6e7b85e7831d6591b4d1ab36 (patch) | |
| tree | 43ddb3f37117e61b1caa619b72c96eafa21cf63b /Makefile.toml | |
| parent | fix(main.rs): enable feature for actions (diff) | |
| download | locus-83fc1aab2e15f60b6e7b85e7831d6591b4d1ab36.tar.xz locus-83fc1aab2e15f60b6e7b85e7831d6591b4d1ab36.zip | |
feat: bump toolchain to nightly-2022-08-23
Diffstat (limited to 'Makefile.toml')
| -rw-r--r-- | Makefile.toml | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/Makefile.toml b/Makefile.toml index cdca5d7..e7313c0 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -1,24 +1,16 @@ -# ------------ -# | Wrappers | -# ------------ [tasks.fmt] -command = "cargo" args = ["fmt"] -private = true +command = "cargo" +toolchain = "nightly" [tasks.check] +args = ["check", "--all-features"] command = "cargo" -args = ["check"] -private = true [tasks.clippy] +args = ["clippy", "--all-features"] command = "cargo" -args = ["clippy"] -private = true -# ------------- -# | Executors | -# ------------- [tasks.checkf] dependencies = ["fmt", "check"] |