first commit

This commit is contained in:
Troy 2025-05-22 00:44:19 +01:00
commit 928887c1a3
Signed by: troy
GPG key ID: DFC06C02ED3B4711
8 changed files with 384 additions and 0 deletions

11
shell.nix Normal file
View file

@ -0,0 +1,11 @@
{pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
nativeBuildInputs = with pkgs.buildPackages; [
cargo
rustc
rustfmt
pkg-config
openssl
cargo-edit
];
}