chore: Set up code coverage toolkit

This commit is contained in:
Jeremy Wall 2024-12-23 19:20:23 -05:00
parent 4b6b8cfa02
commit d93f0ec90c
2 changed files with 2 additions and 1 deletions

1
.gitignore vendored
View File

@ -1,3 +1,4 @@
/target
result/
*.json
tarpaulin-*

View File

@ -37,7 +37,7 @@
rust-bin = pkgs.rust-bin;
devShells.default = pkgs.mkShell {
nativeBuildInputs = with pkgs; [ gnumake my-rust-bin rust-analyzer ];
nativeBuildInputs = with pkgs; [ gnumake my-rust-bin rust-analyzer cargo-tarpaulin ];
};
});
}