Hello,
I am mulling over a few options for a http request crate.
My use case is very simple - I need to make concurrent requests to a public API over https, and fan-in the responses from each call into a single output file. Performance is a consideration in my case, so a library that can easily take advantage of multiple cores would be ideal.
Given my constraints, what would you personally use for this? Reqwest? Actix-web's HTTP client? Hyper? Tokio-curl?
Thank you in advance!