snix/tvix/castore/src/lib.rs
Yureka 1a6b6e3ef3 feat(tvix/castore): add composition module
Change-Id: I0868f3278db85ae5fe030089ee9033837bc08748
Signed-off-by: Yureka <tvl@yuka.dev>
Reviewed-on: https://cl.tvl.fyi/c/depot/+/11853
Reviewed-by: flokli <flokli@flokli.de>
Tested-by: BuildkiteCI
2024-07-18 10:42:11 +00:00

31 lines
600 B
Rust

mod digests;
mod errors;
mod hashing_reader;
pub mod blobservice;
pub mod composition;
pub mod directoryservice;
pub mod fixtures;
#[cfg(feature = "fs")]
pub mod fs;
mod path;
pub use path::{Path, PathBuf};
pub mod import;
pub mod proto;
pub mod tonic;
pub use digests::{B3Digest, B3_LEN};
pub use errors::Error;
pub use hashing_reader::{B3HashingReader, HashingReader};
#[cfg(test)]
mod tests;
// That's what the rstest_reuse README asks us do, and fails about being unable
// to find rstest_reuse in crate root.
#[cfg(test)]
#[allow(clippy::single_component_path_imports)]
use rstest_reuse;