Implement a persistent compilation cache

This commit is contained in:
Omar Abdulla
2025-08-16 17:11:04 +03:00
parent 19075f76e0
commit c34f5a3d95
12 changed files with 415 additions and 275 deletions
+8
View File
@@ -169,6 +169,14 @@ where
self
}
pub fn then(self, callback: impl FnOnce(Self) -> Self) -> Self {
callback(self)
}
pub fn try_then<E>(self, callback: impl FnOnce(Self) -> Result<Self, E>) -> Result<Self, E> {
callback(self)
}
pub async fn try_build(
self,
compiler_path: impl AsRef<Path>,