diff options
author | Vincent Ambo <mail@tazj.in> | 2023-01-12T10·59+0300 |
---|---|---|
committer | tazjin <tazjin@tvl.su> | 2023-01-17T10·20+0000 |
commit | f27f5ef0c990c3cab9182437bb76593be9b0a0fd (patch) | |
tree | 2a2ddd1b27f33e3926b16aee6e26ed78b39055a8 /tvix/cli/src/main.rs | |
parent | d644ed389aab967a276c39b349a8d266a1aee889 (diff) |
feat(tvix/cli): add known_paths module r/5669
This module implements types used to track the set of known paths in the context of an evaluation. These are used to determine the build references of a derivation. Change-Id: I81e15ae33632784e699128916485751613b231a3 Reviewed-on: https://cl.tvl.fyi/c/depot/+/7816 Tested-by: BuildkiteCI Reviewed-by: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix/cli/src/main.rs')
-rw-r--r-- | tvix/cli/src/main.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/cli/src/main.rs b/tvix/cli/src/main.rs index 0f837b346c2d..42297d365bbf 100644 --- a/tvix/cli/src/main.rs +++ b/tvix/cli/src/main.rs @@ -1,3 +1,4 @@ +mod known_paths; mod nix_compat; mod refscan; |