I have a lot of code using ureq for http requests and I'm wondering if I can avoid using another http library.
I have a list of urls and I'm invoking ureq::get on them. I'm wondering if I can somehow make these calls in parallel. How would I create separate threads and execute these in parallel?
let v = vec!["www.qwe.com"; 3];
let responses = v.into_iter().map(|s| make_get_request(s)).collect::<Vec<_>>();