From 3dcc0271b86a6c64569c58051c5eb5027a14f8b8 Mon Sep 17 00:00:00 2001 From: ddidderr Date: Sun, 17 Aug 2025 15:59:07 +0200 Subject: [PATCH] justfile: typical cargo commands --- justfile | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/justfile b/justfile index a0f59ca..99d892b 100644 --- a/justfile +++ b/justfile @@ -6,5 +6,17 @@ server: client: cargo tauri dev +fmt: + cargo +nightly fmt + +_fix: + cargo fix + cargo clippy --fix + +fix: _fix fmt + +clippy: + cargo clippy + clean: cargo clean