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 <tazjin@tvl.su>
Tested-by: BuildkiteCI
This commit is contained in:
Florian Klink 2022-12-29 21:39:28 +01:00 committed by flokli
parent cfa42fd19a
commit 43f6aec384
9 changed files with 652 additions and 40 deletions

View file

@ -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;