Hacker News new | ask | show | jobs
by mitchtbaum 3513 days ago
Those looking from a "reimplement it in Rust" angle may like:

* https://github.com/hyperium/hyper/

* https://github.com/lukaszwawrzyk/rust-wget

* https://github.com/tokio-rs/tokio-curl

1 comments

tokio-curl uses libcurl internally
Yes. I linked it to show how a web client can run requests in parallel using Rust's tokio and futures libraries. If anyone makes a similar implementation, it might go in tokio-hyper/examples ( https://github.com/tokio-rs/tokio-hyper/tree/master/examples ) or near rust-wget to add more of wget and curl's wrapped functionality.