about summary refs log tree commit diff
path: root/tvix/store/src/chunkservice/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/store/src/chunkservice/mod.rs')
-rw-r--r--tvix/store/src/chunkservice/mod.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/store/src/chunkservice/mod.rs b/tvix/store/src/chunkservice/mod.rs
index 725ed2014e5b..60bef3765d1b 100644
--- a/tvix/store/src/chunkservice/mod.rs
+++ b/tvix/store/src/chunkservice/mod.rs
@@ -7,6 +7,7 @@ use crate::Error;
 
 pub use self::memory::MemoryChunkService;
 pub use self::sled::SledChunkService;
+pub use self::util::update_hasher;
 pub use self::util::upload_chunk;
 
 /// The base trait all ChunkService services need to implement.