feat(tvix/store): drop BlobWriter

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
This commit is contained in:
Florian Klink 2023-03-11 21:23:28 +01:00 committed by flokli
parent c8bbddd5e5
commit 21782d24f5
2 changed files with 0 additions and 142 deletions

View file

@ -1,5 +1,4 @@
mod blobreader;
mod blobwriter;
mod errors;
pub mod blobservice;
@ -11,7 +10,6 @@ pub mod pathinfoservice;
pub mod proto;
pub use blobreader::BlobReader;
pub use blobwriter::BlobWriter;
pub use errors::Error;
#[cfg(test)]