diff options
author | Florian Klink <flokli@flokli.de> | 2024-05-04T19·23+0300 |
---|---|---|
committer | flokli <flokli@flokli.de> | 2024-05-04T21·27+0000 |
commit | ba00f0c6955fcd505cfa7ef06dc35b53ac14868a (patch) | |
tree | c695c21ee57bc51926fc24daf1ddba5dc8ca0796 /tvix/store/src/import.rs | |
parent | f2f12d15568b068b7b38473c03b74275a7f43cee (diff) |
refactor(tvix/*store): use DS: DirectoryService r/8073
We implement DirectoryService for Arc<DirectoryService> and Box<DirectoryService>, this is sufficient. Change-Id: I0a5a81cbc4782764406b5bca57f908ace6090737 Reviewed-on: https://cl.tvl.fyi/c/depot/+/11586 Tested-by: BuildkiteCI Reviewed-by: Connor Brewster <cbrewster@hey.com>
Diffstat (limited to 'tvix/store/src/import.rs')
-rw-r--r-- | tvix/store/src/import.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tvix/store/src/import.rs b/tvix/store/src/import.rs index 88cebc8be613..2331fd77ea5e 100644 --- a/tvix/store/src/import.rs +++ b/tvix/store/src/import.rs @@ -114,7 +114,7 @@ pub async fn import_path_as_nar_ca<BS, DS, PS, P>( where P: AsRef<Path> + std::fmt::Debug, BS: BlobService + Clone, - DS: AsRef<dyn DirectoryService>, + DS: DirectoryService, PS: AsRef<dyn PathInfoService>, { let root_node = ingest_path(blob_service, directory_service, path.as_ref()) |