|
|
|
|
|
by pcwalton
881 days ago
|
|
Yeah, it seems to me like the author just wants a simple HTTP client for Rust that prioritizes simplicity over raw performance and is unhappy with the fact that reqwest isn't that. Though as developers we often wish it were otherwise, given a choice between implementation simplicity and performance most people will choose the latter (as long as correctness isn't sacrificed). So that's why reqwest is more popular and is the first choice that appears when searching for [rust http client] on Google. Thankfully, ureq exists for those who prefer implementation simplicity, and that's what the author should probably choose. |
|
> the author just wants a simple HTTP client for Rust that prioritizes simplicity over raw performance
I saw it as:
> the author just wants a safe HTTP client for Rust that prioritizes safety over raw performance
That resonates with me as well.