From d93f0ec90c84d81876da9b870ea8752fd0f86772 Mon Sep 17 00:00:00 2001 From: Jeremy Wall Date: Mon, 23 Dec 2024 19:20:23 -0500 Subject: [PATCH] chore: Set up code coverage toolkit --- .gitignore | 1 + flake.nix | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 086183e..081405b 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /target result/ *.json +tarpaulin-* diff --git a/flake.nix b/flake.nix index 43af2fc..a1fdfeb 100644 --- a/flake.nix +++ b/flake.nix @@ -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 ]; }; }); }