feat: consolidate, license

This commit is contained in:
Kat Inskip 2025-10-25 02:09:48 -07:00
commit 0ade7d9539
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
19 changed files with 2088 additions and 0 deletions

3
shell.nix Normal file
View file

@ -0,0 +1,3 @@
{pkgs ? import <nixpkgs> {}, ...}: pkgs.mkShell {
buildInputs = [pkgs.cargo pkgs.rustc pkgs.clippy pkgs.rust-analyzer (pkgs.rustfmt.override {asNightly = true;})];
}