update readme, set add nix shell

This commit is contained in:
2026-03-08 13:42:07 +01:00
parent 22cde2b988
commit f40fa795eb
3 changed files with 114 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
{ pkgs ? import <nixpkgs> {}}:
pkgs.mkShell {
buildInputs = with pkgs; [
# Rust toolchain
cargo
rustc
rustfmt
clippy
rust-analyzer
# Additional tools
cargo-watch
cargo-edit
# Profiling tools
cargo-flamegraph
samply
perf
];
# Environment variables
RUST_BACKTRACE = 1;
}