aboutsummaryrefslogtreecommitdiff
path: root/Makefile.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.toml')
-rw-r--r--Makefile.toml16
1 files changed, 14 insertions, 2 deletions
diff --git a/Makefile.toml b/Makefile.toml
index 3215d13..06832aa 100644
--- a/Makefile.toml
+++ b/Makefile.toml
@@ -14,10 +14,22 @@ command = "cargo"
toolchain = "nightly"
[tasks.checkf]
-dependencies = ["fmt", "check"]
+script_runner = "@shell"
+script = '''
+cargo make fmt
+cargo make check tokio
+cargo make check async-std
+'''
[tasks.checkfc]
-dependencies = ["fmt", "check", "clippy"]
+script_runner = "@shell"
+script = '''
+cargo make fmt
+cargo make check tokio
+cargo make check async-std
+cargo make clippy tokio
+cargo make clippy async-std
+'''
[tasks.genkey]
command = "openssl"