diff --git a/justfile b/justfile new file mode 100644 index 0000000..ee5704c --- /dev/null +++ b/justfile @@ -0,0 +1,12 @@ +_: + @just --list + +check: + cargo check + +lint: + cargo clippy + +build: + cargo build --release +