MForster / factorio-rust-tools

A Rust library to export prototype definitions from Factorio.
4 stars 1 forks source link

Increase parallelism in mod resolution #72

Open MForster opened 1 year ago

MForster commented 1 year ago

Currently mod dependencies are resolved one by one. As this requires waiting on API requests to finish, we could do that in parallel to reduce wall time of resolution. Not sure if this will lead to a big speedup. It might also involve some hairy async code.