From 43f6aec384978da8ba554f14ba89959051b47d94 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Thu, 29 Dec 2022 21:39:28 +0100 Subject: feat(tvix/store): implement PathInfoService with sled This uses [sled](https://github.com/spacejam/sled) to store PathInfo objects. Change-Id: I12e8032e5562af8f884efa23a78049fd1108fdbc Reviewed-on: https://cl.tvl.fyi/c/depot/+/7726 Reviewed-by: tazjin Tested-by: BuildkiteCI --- tvix/store/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tvix/store/src/lib.rs') diff --git a/tvix/store/src/lib.rs b/tvix/store/src/lib.rs index 642d285990dd..8d7d45d028b9 100644 --- a/tvix/store/src/lib.rs +++ b/tvix/store/src/lib.rs @@ -4,7 +4,7 @@ pub mod store_path; pub mod dummy_blob_service; pub mod dummy_directory_service; -pub mod dummy_path_info_service; +pub mod sled_path_info_service; #[cfg(test)] mod tests; -- cgit 1.4.1