From 7e737fde34260daa477794d63b0b3344b4a1d81b Mon Sep 17 00:00:00 2001 From: Connor Brewster Date: Sat, 16 Sep 2023 13:54:10 -0500 Subject: refactor(tvix/store/fs): Separate FUSE and filesystem code In prepration for adding virtiofs support, I thought it would make sense to split out the filesystem implementation from FUSE itself. The `fs` module holds the tvix-store filesystem implemetation and the `fuse` module holds the code to spawn a FUSE daemon backed by multiple threads. Change-Id: I8c58447b8c3aa016a613068f8e7ec166554e237c Reviewed-on: https://cl.tvl.fyi/c/depot/+/9343 Reviewed-by: flokli Tested-by: BuildkiteCI Autosubmit: Connor Brewster --- tvix/store/src/lib.rs | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'tvix/store/src/lib.rs') diff --git a/tvix/store/src/lib.rs b/tvix/store/src/lib.rs index 252506de5977..6270812d47fc 100644 --- a/tvix/store/src/lib.rs +++ b/tvix/store/src/lib.rs @@ -1,7 +1,8 @@ mod digests; mod errors; -#[cfg(feature = "fuse")] -mod fuse; + +#[cfg(feature = "fs")] +pub mod fs; pub mod blobservice; pub mod directoryservice; @@ -13,8 +14,5 @@ pub mod proto; pub use digests::B3Digest; pub use errors::Error; -#[cfg(feature = "fuse")] -pub use fuse::{FuseDaemon, FUSE}; - #[cfg(test)] mod tests; -- cgit 1.4.1