You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently we make blocking calls when we make HTTP requests to the API server, which makes this library unusable from async contexts, common in most projects that make network requests. We should implement async variants of methods on our service structs, which will require moving away from our ureq dependency which does not support async. We should probably use Tokio and reqwest.
The text was updated successfully, but these errors were encountered:
ghost
added
the
enhancement
New feature, enhancement or code changes, not related to defects
label
Mar 22, 2023
Currently we make blocking calls when we make HTTP requests to the API server, which makes this library unusable from async contexts, common in most projects that make network requests. We should implement async variants of methods on our service structs, which will require moving away from our ureq dependency which does not support async. We should probably use Tokio and reqwest.
The text was updated successfully, but these errors were encountered: