b3ca1a78eb
`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>
22 lines
344 B
Rust
22 lines
344 B
Rust
mod digests;
|
|
mod errors;
|
|
#[cfg(feature = "fuse")]
|
|
mod fuse;
|
|
mod store_io;
|
|
|
|
pub mod blobservice;
|
|
pub mod directoryservice;
|
|
pub mod import;
|
|
pub mod nar;
|
|
pub mod pathinfoservice;
|
|
pub mod proto;
|
|
|
|
pub use digests::B3Digest;
|
|
pub use errors::Error;
|
|
pub use store_io::TvixStoreIO;
|
|
|
|
#[cfg(feature = "fuse")]
|
|
pub use fuse::FUSE;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|