This commit is contained in:
2026-05-17 20:15:09 +03:00
commit 3fc472a5bc
8 changed files with 3764 additions and 0 deletions

14
shell.nix Normal file
View File

@@ -0,0 +1,14 @@
{ pkgs ? import <nixpkgs> {} }:
pkgs.mkShell {
buildInputs = with pkgs; [
rustup
pkg-config
openssl
];
shellHook = ''
rustup toolchain install stable
rustup default stable
'';
}