aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-05-21 08:12:53 +0000
committerFuwn <[email protected]>2025-05-21 08:12:53 +0000
commit48a8799d2e1d3b0aca5913a4b1f82d99aacdda83 (patch)
tree3d6775af12bb982baf29e0194ad01fb1a486798f
parentchore(git): Update ignored files (diff)
downloadseptember-48a8799d2e1d3b0aca5913a4b1f82d99aacdda83.tar.xz
september-48a8799d2e1d3b0aca5913a4b1f82d99aacdda83.zip
chore(just): Use base Cargo Justfile from Fuwn/justfiles
-rw-r--r--.gitignore2
-rw-r--r--justfile21
2 files changed, 6 insertions, 17 deletions
diff --git a/.gitignore b/.gitignore
index b77edbd..d7935b2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -22,3 +22,5 @@ result*
# macOS
.DS_Store
+# Fuwn/justfiles
+*.just
diff --git a/justfile b/justfile
index 1ffc866..e5d6b38 100644
--- a/justfile
+++ b/justfile
@@ -1,20 +1,7 @@
+import? 'cargo.just'
+
default:
@just --list
-fmt:
- cargo fmt
-
-check:
- cargo check --all-features
-
-checkf:
- @just fmt
- @just check
-
-checkfc:
- @just checkf
- cargo clippy
-
-run:
- @just checkfc
- cargo run
+fetch:
+ curl https://raw.githubusercontent.com/Fuwn/justfiles/refs/heads/main/cargo.just > cargo.just