about summary refs log tree commit diff
path: root/tvix/store/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tvix/store/src/lib.rs')
-rw-r--r--tvix/store/src/lib.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/tvix/store/src/lib.rs b/tvix/store/src/lib.rs
index 3e7852134810..aac650b1ca8b 100644
--- a/tvix/store/src/lib.rs
+++ b/tvix/store/src/lib.rs
@@ -1,5 +1,4 @@
 mod blobreader;
-mod blobwriter;
 mod errors;
 
 pub mod blobservice;
@@ -11,7 +10,6 @@ pub mod pathinfoservice;
 pub mod proto;
 
 pub use blobreader::BlobReader;
-pub use blobwriter::BlobWriter;
 pub use errors::Error;
 
 #[cfg(test)]