start work on prudp v0

This commit is contained in:
Maple 2026-01-07 20:33:29 +01:00
commit 4d4fc6c7bf
10 changed files with 160 additions and 7 deletions

18
shell.nix Normal file
View file

@ -0,0 +1,18 @@
{
pkgs ? import <nixpkgs> { },
pkg ? pkgs.callPackage ./. { },
}:
pkgs.mkShell {
# Get dependencies from the main package
# inputsFrom = [ pkg ];
# Additional tooling
buildInputs = with pkgs; [
cargo
rust-analyzer # LSP Server
rustfmt # Formatter
clippy # Linter
podman
yq
jq
];
}