about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--tvix/store/src/pathinfoservice/cache.rs (renamed from tvix/store/src/pathinfoservice/combinators.rs)0
-rw-r--r--tvix/store/src/pathinfoservice/mod.rs6
2 files changed, 2 insertions, 4 deletions
diff --git a/tvix/store/src/pathinfoservice/combinators.rs b/tvix/store/src/pathinfoservice/cache.rs
index df0046875057..df0046875057 100644
--- a/tvix/store/src/pathinfoservice/combinators.rs
+++ b/tvix/store/src/pathinfoservice/cache.rs
diff --git a/tvix/store/src/pathinfoservice/mod.rs b/tvix/store/src/pathinfoservice/mod.rs
index d31a1e652e3b..e64f1e2fcd2a 100644
--- a/tvix/store/src/pathinfoservice/mod.rs
+++ b/tvix/store/src/pathinfoservice/mod.rs
@@ -1,4 +1,4 @@
-mod combinators;
+mod cache;
 mod from_addr;
 mod grpc;
 mod lru;
@@ -22,9 +22,7 @@ use tvix_castore::Error;
 use crate::nar::NarCalculationService;
 pub use crate::path_info::PathInfo;
 
-pub use self::combinators::{
-    Cache as CachePathInfoService, CacheConfig as CachePathInfoServiceConfig,
-};
+pub use self::cache::{Cache as CachePathInfoService, CacheConfig as CachePathInfoServiceConfig};
 pub use self::from_addr::from_addr;
 pub use self::grpc::{GRPCPathInfoService, GRPCPathInfoServiceConfig};
 pub use self::lru::{LruPathInfoService, LruPathInfoServiceConfig};