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-02-12T11·00+0100
committerflokli <flokli@flokli.de>2023-03-06T15·32+0000
commit119aa43171c2e2c654d513ea2f2ee740f962a398 (patch)
tree11afb3f3fb1c13898ac5943daee15728935032ca /tvix/store/src/lib.rs
parent3f27fe34843357e8782ae3357ab1f7ed272ccfca (diff)
feat(tvix/store): add chunkservice r/5893
This adds the simpler ChunkService trait, and an implementation for it
using sled, and one using a HashMap.

Change-Id: Icb0fdc41b37b44e9e9e4f548d0f4acae1d83b71e
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8086
Reviewed-by: raitobezarius <tvl@lahfa.xyz>
Tested-by: BuildkiteCI
Diffstat (limited to 'tvix/store/src/lib.rs')
-rw-r--r--tvix/store/src/lib.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/tvix/store/src/lib.rs b/tvix/store/src/lib.rs
index 2c8e8610da..e4d770c312 100644
--- a/tvix/store/src/lib.rs
+++ b/tvix/store/src/lib.rs
@@ -2,6 +2,7 @@ pub mod client;
 
 mod errors;
 
+pub mod chunkservice;
 pub mod proto;
 
 pub mod dummy_blob_service;