roc-lang / rbt

Roc Build Tool
Universal Permissive License v1.0
49 stars 5 forks source link

walk the build graph in parallel #73

Closed BrianHicks closed 1 year ago

BrianHicks commented 2 years ago

With https://github.com/roc-lang/rbt/pull/69, we have an actual build graph. Next step: walk it in parallel!

Dependencies:

We probably don't want to do this in an async context, by the way. The async_std implementation of process is unstable, and we're going to want to avoid spawning all the build tasks at once!