aboutsummaryrefslogtreecommitdiff
path: root/Makefile.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2022-06-14 08:45:09 +0000
committerFuwn <[email protected]>2022-06-14 08:45:09 +0000
commitb5703a59c59bfe95143cf8dc6cc54f20f67fb4fd (patch)
tree44022e3944119c39df5b9082aaac3a77841c8c10 /Makefile.toml
parentfix(ast): list ast construction (diff)
downloadgerm-b5703a59c59bfe95143cf8dc6cc54f20f67fb4fd.tar.xz
germ-b5703a59c59bfe95143cf8dc6cc54f20f67fb4fd.zip
feat(macros): general utility macros
Diffstat (limited to 'Makefile.toml')
-rw-r--r--Makefile.toml7
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