diff options
| author | Fuwn <[email protected]> | 2025-05-31 00:35:34 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-05-31 00:35:34 -0700 |
| commit | a9dc0208eb892ef103132f69472bacb2fde72845 (patch) | |
| tree | 799bf0ac9136adccae235dc81ef576967afb2d7b | |
| parent | a5ce6c438a1546927bf90847c0e4cd6bcf45f0dc (diff) | |
| download | para-a9dc0208eb892ef103132f69472bacb2fde72845.tar.xz para-a9dc0208eb892ef103132f69472bacb2fde72845.zip | |
chore: Drop cargo-make for just
| -rw-r--r-- | .gitignore | 2 | ||||
| -rw-r--r-- | Makefile.toml | 60 | ||||
| -rw-r--r-- | justfile | 7 |
3 files changed, 9 insertions, 60 deletions
@@ -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 |