diff options
Diffstat (limited to 'justfile')
| -rw-r--r-- | justfile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/justfile b/justfile new file mode 100644 index 0000000..1ffc866 --- /dev/null +++ b/justfile @@ -0,0 +1,20 @@ +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 |