diff options
author | Florian Klink <flokli@flokli.de> | 2023-03-11T20·23+0100 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2023-03-13T10·05+0000 |
commit | 21782d24f5f16942cb67fee6c098aa15bdf88d0c (patch) | |
tree | cc9bf8bf2f5899720b0507af3dd608c5861c121e /tvix/store/src/lib.rs | |
parent | c8bbddd5e55412c1b1319677e457d8175d6e78ab (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.rs | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tvix/store/src/lib.rs b/tvix/store/src/lib.rs index 3e7852134810..aac650b1ca8b 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)] |