From 119aa43171c2e2c654d513ea2f2ee740f962a398 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sun, 12 Feb 2023 12:00:00 +0100 Subject: feat(tvix/store): add chunkservice 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 Tested-by: BuildkiteCI --- tvix/store/src/lib.rs | 1 + 1 file changed, 1 insertion(+) (limited to 'tvix/store/src/lib.rs') diff --git a/tvix/store/src/lib.rs b/tvix/store/src/lib.rs index 2c8e8610daf6..e4d770c312a9 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; -- cgit 1.4.1