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.rs5
1 files changed, 5 insertions, 0 deletions
diff --git a/tvix/store/src/lib.rs b/tvix/store/src/lib.rs
index 7ae8587f8b..9ac36ac94f 100644
--- a/tvix/store/src/lib.rs
+++ b/tvix/store/src/lib.rs
@@ -1,5 +1,7 @@
 mod digests;
 mod errors;
+#[cfg(feature = "fuse")]
+mod fuse;
 mod store_io;
 
 pub mod blobservice;
@@ -13,5 +15,8 @@ pub use digests::B3Digest;
 pub use errors::Error;
 pub use store_io::TvixStoreIO;
 
+#[cfg(feature = "fuse")]
+pub use fuse::FUSE;
+
 #[cfg(test)]
 mod tests;