From 4e8ca43ee717f52158704ed1878d870a22746e86 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 21 May 2025 08:11:04 +0000 Subject: feat: Add Justfile for Cargo (Rust) --- cargo.just | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 cargo.just diff --git a/cargo.just b/cargo.just new file mode 100644 index 0000000..1a8ca66 --- /dev/null +++ b/cargo.just @@ -0,0 +1,21 @@ +fmt: + cargo fmt + +check: + cargo check --all-features + +clippy: + cargo clippy --all-features + +checkf: + @just fmt + @just check + +checkfc: + @just checkf + cargo clippy + +run +arguments="": + @just checkfc + cargo run -- {{arguments}} + -- cgit v1.2.3