shelly/justfile
2025-01-08 09:52:21 -06:00

17 lines
138 B
Makefile

default:
list
run:
cargo run
build:
cargo build
watch:
cargo watch -- cargo run
alias r := run
alias b := build