-14
Avoid Async Rust - blog.hugpoint.tech
(blog.hugpoint.tech)
Welcome to the Rust community! This is a place to discuss about the Rust programming language.
Credits
For applications that is true but for libraries it often is not. You can e.g. design REST API libraries quite well with most of the code ignoring sync vs. async completely and only the part that actually performs requests in a general way has to handle the distinction which is why many of them include both versions.
Thanks for the clarification. This is especially true for libraries that can benefit from async.