diff --git a/tvix/store/src/pathinfoservice/combinators.rs b/tvix/store/src/pathinfoservice/cache.rs similarity index 100% rename from tvix/store/src/pathinfoservice/combinators.rs rename to tvix/store/src/pathinfoservice/cache.rs diff --git a/tvix/store/src/pathinfoservice/mod.rs b/tvix/store/src/pathinfoservice/mod.rs index d31a1e652..e64f1e2fc 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};