wow it works

This commit is contained in:
Gregory Bednov 2025-12-26 06:45:35 +03:00
commit 00e2260bb3
7 changed files with 237 additions and 0 deletions

9
shell.nix Normal file
View file

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