diff options
| -rw-r--r-- | cargo.just | 21 |
1 files changed, 21 insertions, 0 deletions
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}} + |