aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--Makefile.toml60
-rw-r--r--justfile7
3 files changed, 9 insertions, 60 deletions
diff --git a/.gitignore b/.gitignore
index ffff1da..5f6335e 100644
--- a/.gitignore
+++ b/.gitignore
@@ -19,3 +19,5 @@ Cargo.lock
/*.json
/*.png
+# Fuwn/justfiles
+*.just
diff --git a/Makefile.toml b/Makefile.toml
deleted file mode 100644
index c8a2072..0000000
--- a/Makefile.toml
+++ /dev/null
@@ -1,60 +0,0 @@
-# -------------
-# | Variables |
-# -------------
-[env]
-CARGO_MAKE_EXTEND_WORKSPACE_MAKEFILE = true
-
-# ------------
-# | Wrappers |
-# ------------
-[tasks.fmt]
-command = "cargo"
-args = ["fmt"]
-private = true
-
-[tasks.check]
-command = "cargo"
-args = ["check"]
-private = true
-
-[tasks.clippy]
-command = "cargo"
-args = ["clippy"]
-private = true
-
-[tasks.test]
-command = "cargo"
-args = ["test"]
-private = true
-
-[tasks.bench]
-command = "cargo"
-args = ["bench"]
-private = true
-
-# -------------
-# | Executors |
-# -------------
-[tasks.checkf]
-workspace = false
-dependencies = ["fmt", "check"]
-
-[tasks.checkfc]
-workspace = false
-dependencies = ["fmt", "check", "clippy"]
-
-[tasks.checkall]
-workspace = false
-dependencies = ["fmt", "check", "clippy", "test", "bench"]
-
-[tasks.docs]
-workspace = false
-toolchain = "nightly"
-command = "cargo"
-args = ["doc", "--open", "--document-private-items", "--no-deps"]
-
-[tasks.run]
-workspace = false
-dependencies = ["checkfc"]
-command = "cargo"
-args = ["run", "--bin", "para", "${@}"]
diff --git a/justfile b/justfile
new file mode 100644
index 0000000..e5d6b38
--- /dev/null
+++ b/justfile
@@ -0,0 +1,7 @@
+import? 'cargo.just'
+
+default:
+ @just --list
+
+fetch:
+ curl https://raw.githubusercontent.com/Fuwn/justfiles/refs/heads/main/cargo.just > cargo.just