feat: Rust templates

This commit is contained in:
Kiana Sheibani 2025-11-26 17:45:12 -05:00
parent 50a0f0abc2
commit e5faf58ba8
Signed by: toki
GPG key ID: 6CB106C25E86A9F7
33 changed files with 630 additions and 1 deletions

View file

@ -0,0 +1,12 @@
{
lib,
rustPlatform,
}:
rustPlatform.buildRustPackage {
pname = "hello";
version = "0.1";
src = ./.;
cargoLock.lockFile = ./Cargo.lock;
}