initial commit

This commit is contained in:
Jakob Lechner 2024-12-07 17:45:16 +01:00
commit cf7d87c04d
34 changed files with 4282 additions and 0 deletions

8
shell.nix Normal file
View file

@ -0,0 +1,8 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
nativeBuildInputs = with pkgs; [
cargo
cargo-watch
gcc
];
}