diff options
author | Florian Klink <flokli@flokli.de> | 2023-05-28T07·32+0200 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-06-10T15·33+0000 |
commit | b3ca1a78eb780e427a85dd1bbe1c649f998dee65 (patch) | |
tree | 1604d8c6d18a1ba72d745c3286c0f009014b86b5 /tvix/store/src/lib.rs | |
parent | 365937cd08879098f53edcf42695271deaccfb23 (diff) |
feat(tvix/store): add mount command to entrypoint and fuse mod r/6263
`tvix-store mount PATH` will mount the tvix-store to the given path. Change-Id: Icb82a6b3cb8a22eec856c375a28ae5580403833f Reviewed-on: https://cl.tvl.fyi/c/depot/+/8665 Reviewed-by: tazjin <tazjin@tvl.su> Tested-by: BuildkiteCI Autosubmit: flokli <flokli@flokli.de>
Diffstat (limited to 'tvix/store/src/lib.rs')
-rw-r--r-- | tvix/store/src/lib.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tvix/store/src/lib.rs b/tvix/store/src/lib.rs index 7ae8587f8b26..9ac36ac94f0b 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; |