diff options
Diffstat (limited to 'tvix/store/src/nixpath.rs')
-rw-r--r-- | tvix/store/src/nixpath.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tvix/store/src/nixpath.rs b/tvix/store/src/nixpath.rs index 44350803eafa..b619126868d5 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 { |