Hacker News new | ask | show | jobs
by andriy_koval 33 days ago
someone(mythos?) should write some simple-curl with 20% of features implemented in rust used by 98% of users.
1 comments

curl is dealing with the complexity of HTTP. Even doing a simple basic request to some website, is going to cover a lot of code paths to deal with all sorts of response codes (redirects, etc.), headers, etc.

It's likely that new Rust code would introduce more bugs, while curl is extremely well tested at this point.