EmbarkStudios / cargo-fetcher

🎁 cargo plugin for quickly fetching dependencies 🦀

Home Page:http://embark.rs

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Get rid of async

Jake-Shadle opened this issue · comments

While async is nice in some cases, it really just gets in the way, particularly for making everything truly parallel instead of just concurrent, I think we could get better throughput by just using a blocking reqwest client and using rayon for parallelization.

Resolved by #168