initial commit

This commit is contained in:
Mrrp 2025-03-11 18:10:14 -07:00
commit 018869e0fa
10 changed files with 825 additions and 0 deletions

4
shell.nix Normal file
View file

@ -0,0 +1,4 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = [ pkgs.cargo pkgs.rustc ];
}