Replies: 2 comments 2 replies
-
I find supporting both blocking and async implementations to be a bit weird, the problem is that reqwest library is designed to be asynchronous. An implementation for blocking reqwest is just a wrapper around async implementation. As a user, I was only using async implementation, and when for some reason asynchronous is needed I think it's up to user to create a local executor and run the requests using it |
Beta Was this translation helpful? Give feedback.
-
I only use the async implementation. Using |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
We could explore using a different HTTP client such as ureq to simplify things. If you think there are better options to the question below, please share your thoughts!
2 votes ·
Beta Was this translation helpful? Give feedback.
All reactions