diff options
| author | Fuwn <[email protected]> | 2022-06-14 08:45:09 +0000 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2022-06-14 08:45:09 +0000 |
| commit | b5703a59c59bfe95143cf8dc6cc54f20f67fb4fd (patch) | |
| tree | 44022e3944119c39df5b9082aaac3a77841c8c10 /Makefile.toml | |
| parent | fix(ast): list ast construction (diff) | |
| download | germ-b5703a59c59bfe95143cf8dc6cc54f20f67fb4fd.tar.xz germ-b5703a59c59bfe95143cf8dc6cc54f20f67fb4fd.zip | |
feat(macros): general utility macros
Diffstat (limited to 'Makefile.toml')
| -rw-r--r-- | Makefile.toml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.toml b/Makefile.toml index 6cc0251..8d72151 100644 --- a/Makefile.toml +++ b/Makefile.toml @@ -5,28 +5,35 @@ args = ["fmt"] command = "cargo" toolchain = "nightly" +workspace = false [tasks.check] args = ["check", "--all-features"] command = "cargo" +workspace = false [tasks.clippy] args = ["clippy", "--all-features"] command = "cargo" +workspace = false [tasks.test] args = ["test", "--all-features"] command = "cargo" +workspace = false # ------------- # | Executors | # ------------- [tasks.checkf] dependencies = ["fmt", "check"] +workspace = false [tasks.checkfc] dependencies = ["fmt", "check", "clippy"] +workspace = false [tasks.example] args = ["run", "--example", "${@}", "--all-features"] command = "cargo" +workspace = false |