about summary refs log tree commit diff
path: root/tvix/eval/Cargo.toml
diff options
context:
space:
mode:
authorVincent Ambo <mail@tazj.in>2022-08-10T15·52+0300
committertazjin <tazjin@tvl.su>2022-08-24T21·23+0000
commitb28da8ad56bd0d5dbf58926241060a6e4d34908b (patch)
tree55df4dd19d06bb23f671348ed074a9631a6dee39 /tvix/eval/Cargo.toml
parent4c9aad17add413a387bf927438de8831c00065c5 (diff)
chore(tvix/eval): add 'test-generator' as dev-dependency r/4460
This crate makes it easy to generate test cases from files on disk,
which is used for running the Nix test suite against Tvix.

Change-Id: I60ef26484d05e723982679dd42958adf52735916
Reviewed-on: https://cl.tvl.fyi/c/depot/+/6125
Tested-by: BuildkiteCI
Reviewed-by: grfn <grfn@gws.fyi>
Diffstat (limited to 'tvix/eval/Cargo.toml')
-rw-r--r--tvix/eval/Cargo.toml3
1 files changed, 3 insertions, 0 deletions
diff --git a/tvix/eval/Cargo.toml b/tvix/eval/Cargo.toml
index 0fa90d04d0..2e5643db79 100644
--- a/tvix/eval/Cargo.toml
+++ b/tvix/eval/Cargo.toml
@@ -7,3 +7,6 @@ edition = "2021"
 
 [dependencies]
 rnix = "0.10.2"
+
+[dev-dependencies]
+test-generator = "0.3.0"