adding justfile

This commit is contained in:
Chris Cochrun 2024-12-27 17:16:53 -06:00
parent d92bd4acfb
commit 76396a6b6c
4 changed files with 7496 additions and 2 deletions

12
justfile Normal file
View file

@ -0,0 +1,12 @@
default:
list
run:
cargo run
build:
cargo build
alias r := run
alias b := build