Today cargo completes building each crate before moving on to their reverse-dependencies. It would be more efficient to only wait until the typecheck is done before proceeding to the next crate. This is called 'pipelining' and its a desired cargo feature that probably isn't being actively worked on.
We could do that work ourselves or contract others to.
TODO: find links on this subject
Today cargo completes building each crate before moving on to their reverse-dependencies. It would be more efficient to only wait until the typecheck is done before proceeding to the next crate. This is called 'pipelining' and its a desired cargo feature that probably isn't being actively worked on.
We could do that work ourselves or contract others to.
TODO: find links on this subject