blob: 1a7ac6b4b4150a9fee63d1e00cba8e9b20f927d7 (
plain) (
tree)
|
|
mod digests;
mod errors;
mod hashing_reader;
pub mod blobservice;
pub mod directoryservice;
pub mod fixtures;
#[cfg(feature = "fs")]
pub mod fs;
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;
|