From 6a0ba04bd1e835c92599ef60258099e0d55c8441 Mon Sep 17 00:00:00 2001 From: Igor Dejanovic Date: Mon, 10 Jun 2024 21:45:00 +0200 Subject: [PATCH] setup: fix - add missing test files --- default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/default.nix b/default.nix index cb2ea411..6d006c31 100644 --- a/default.nix +++ b/default.nix @@ -4,7 +4,7 @@ let craneLib = crane.mkLib pkgs; - rustemoFileTypes = [ ".rustemo" ".err" ".ast" ]; + rustemoFileTypes = [ ".rustemo" ".err" ".ast" ".json" ".bytes" ".calc" ]; rustemoFilter = path: _type: builtins.any (ext: lib.hasSuffix ext path) rustemoFileTypes; rustemoOrCargoFilter = path: type: (rustemoFilter path type) || (craneLib.filterCargoSources path type);