aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-05-31 00:35:34 -0700
committerFuwn <[email protected]>2025-05-31 00:35:34 -0700
commita9dc0208eb892ef103132f69472bacb2fde72845 (patch)
tree799bf0ac9136adccae235dc81ef576967afb2d7b
parenta5ce6c438a1546927bf90847c0e4cd6bcf45f0dc (diff)
downloadpara-a9dc0208eb892ef103132f69472bacb2fde72845.tar.xz
para-a9dc0208eb892ef103132f69472bacb2fde72845.zip
chore: Drop cargo-make for just
-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