chore: add initial Rust project scaffolding with Cargo.toml, Makefile, and source files

This commit is contained in:
2025-03-16 23:50:39 +00:00
commit 01c5eb9153
5 changed files with 236 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
all: build run
build:
cargo build --release
run:
./target/release/rullama
backup:
@timestamp=$$(date +%Y%m%d_%H%M%S); \
zip -r rollama_$$timestamp.zip Makefile Cargo.toml src target/release/rullama