basic rust template

This commit is contained in:
Fabien Freling 2025-06-17 13:59:05 +02:00
commit 2f3fac1a58
9 changed files with 1026 additions and 0 deletions

7
justfile Normal file
View file

@ -0,0 +1,7 @@
alias b := build
build:
cargo build
alias r := run
run:
cargo run