add #fuzz devshell and make fuzzing work on nixos

This commit is contained in:
Alex Auvolat
2026-05-01 17:30:12 +02:00
committed by Alex
parent a25ad494cc
commit ddc42c89fb
4 changed files with 20 additions and 6 deletions
+8
View File
@@ -95,6 +95,14 @@
killall
];
};
# dev shell for fuzzing
fuzz = pkgs.mkShell {
buildInputs = with pkgs; [
targets.toolchainNightly
cargo-fuzz
];
};
};
});
}