about summary refs log tree commit diff
path: root/tvix
diff options
context:
space:
mode:
Diffstat (limited to 'tvix')
-rw-r--r--tvix/store/src/nixpath.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/store/src/nixpath.rs b/tvix/store/src/nixpath.rs
index 44350803ea..b619126868 100644
--- a/tvix/store/src/nixpath.rs
+++ b/tvix/store/src/nixpath.rs
@@ -18,8 +18,8 @@ pub enum ParseNixPathError {
 
 #[derive(Debug, PartialEq, Eq)]
 pub struct NixPath {
-    digest: [u8; PATH_HASH_SIZE],
-    name: String,
+    pub digest: [u8; PATH_HASH_SIZE],
+    pub name: String,
 }
 
 impl NixPath {