How we migrate our framework into async/await
Wai Pai Lee
Co-author of ObsidianFirstly, congratulation on Rust lang achieving stable async/await syntax! As of the release, async/await is becoming the preferred way to do asynchronous programming instead of using Futures in Rust lang.
In Obsidian Web Framework, we do the same move just like other libraries which enabling async/await syntax in order to provide a better development experience.
*Rust 1.40 is used in this article