aboutsummaryrefslogtreecommitdiff
path: root/Makefile.toml
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-04-17 06:57:19 +0000
committerFuwn <[email protected]>2023-04-17 06:57:19 +0000
commit3854c711b097b39e858d8ceabb4099a659f875a1 (patch)
treeeaeb6edb104306f17d2bbba3895ee9b93ec39036 /Makefile.toml
parentchore(README): Update examples directory path (diff)
downloadgerm-3854c711b097b39e858d8ceabb4099a659f875a1.tar.xz
germ-3854c711b097b39e858d8ceabb4099a659f875a1.zip
refactor: remove seldom used procedural macros
Diffstat (limited to 'Makefile.toml')
-rw-r--r--Makefile.toml13
1 files changed, 0 insertions, 13 deletions
diff --git a/Makefile.toml b/Makefile.toml
index 8d72151..d152803 100644
--- a/Makefile.toml
+++ b/Makefile.toml
@@ -1,39 +1,26 @@
-# ------------
-# | Wrappers |
-# ------------
[tasks.fmt]
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