about summary refs log tree commit diff
path: root/tvix/store/src/lib.rs
diff options
context:
space:
mode:
authorFlorian Klink <flokli@flokli.de>2023-03-11T20·23+0100
committerflokli <flokli@flokli.de>2023-03-13T10·05+0000
commit21782d24f5f16942cb67fee6c098aa15bdf88d0c (patch)
treecc9bf8bf2f5899720b0507af3dd608c5861c121e /tvix/store/src/lib.rs
parentc8bbddd5e55412c1b1319677e457d8175d6e78ab (diff)
feat(tvix/store): drop BlobWriter r/5960
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
Diffstat (limited to 'tvix/store/src/lib.rs')
-rw-r--r--tvix/store/src/lib.rs2
1 files changed, 0 insertions, 2 deletions
diff --git a/tvix/store/src/lib.rs b/tvix/store/src/lib.rs
index 3e78521348..aac650b1ca 100644
--- a/tvix/store/src/lib.rs
+++ b/tvix/store/src/lib.rs
@@ -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)]