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-12T13·24+0100
committerflokli <flokli@flokli.de>2023-03-10T10·58+0000
commit3af467d7eee2c82b7d3efa3ea14dbe8e63422f56 (patch)
tree79665d13bdbeb0b6ec64460914f09c3431d91bb4 /tvix/store/src/lib.rs
parent35ea0b0d2ed2d72fdafbb0b64756578a389ec484 (diff)
feat(tvix/store): add directoryservice r/5912
This adds a DirectoryService trait, and an implementation for it using
sled, and one using a HashMap.

Change-Id: Ida61524b2ca949e1b3a78089a5aa7d9f9800c8d7
Reviewed-on: https://cl.tvl.fyi/c/depot/+/8093
Tested-by: BuildkiteCI
Reviewed-by: raitobezarius <tvl@lahfa.xyz>
Diffstat (limited to '')
-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 12250a9c0d..0279d13f9b 100644
--- a/tvix/store/src/lib.rs
+++ b/tvix/store/src/lib.rs
@@ -5,6 +5,7 @@ mod errors;
 
 pub mod blobservice;
 pub mod chunkservice;
+pub mod directoryservice;
 pub mod proto;
 
 pub use blobreader::BlobReader;