All code initially using this has been replaced by the simpler and more performant implementation with StreamCDC and read_all_and_chunk. Change-Id: I08889e9a6984de91c5debcf2b612cb68ae5072d1 Reviewed-on: https://cl.tvl.fyi/c/depot/+/8265 Autosubmit: flokli <flokli@flokli.de> Reviewed-by: tazjin <tazjin@tvl.su> Reviewed-by: raitobezarius <tvl@lahfa.xyz> Tested-by: BuildkiteCI
16 lines
248 B
Rust
16 lines
248 B
Rust
mod blobreader;
|
|
mod errors;
|
|
|
|
pub mod blobservice;
|
|
pub mod chunkservice;
|
|
pub mod directoryservice;
|
|
pub mod import;
|
|
pub mod nar;
|
|
pub mod pathinfoservice;
|
|
pub mod proto;
|
|
|
|
pub use blobreader::BlobReader;
|
|
pub use errors::Error;
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|