-
Notifications
You must be signed in to change notification settings - Fork 20
Don't use reqwest::blocking #60
Comments
Sure, feel free to send a PR as long as it doesn't introduce any hard dependencies on any particular executor. |
Hi. I am currently interested in implementing this feature, but after quick look I think that this require major changes, because existing code is heavily rely on sync functions. What should be done:
The major problem is
I think first option is easiest to implement, but it require more memory in runtime. Any thoughts? |
I just came across the same limitation as @CGenie mentioned in the original post, but I do only have the restriction that the Edit after first tries: |
I want to create an API service, and I see
reqwest::blocking
is used here. Is it possible to rewrite to useasync
/await
instead?The text was updated successfully, but these errors were encountered: