Merge branch 'feature/chached-fs-sync' into feature/compiler-modes

This commit is contained in:
Omar Abdulla
2025-08-15 07:19:53 +03:00
10 changed files with 181 additions and 19 deletions
+1
View File
@@ -735,6 +735,7 @@ async fn compile_contracts<P: Platform>(
// library.
compiler = FilesWithExtensionIterator::new(metadata.directory()?)
.with_allowed_extension("sol")
.with_use_cached_fs(true)
.fold(compiler, |compiler, path| {
compiler.with_library(&path, library_ident.as_str(), *library_address)
});