We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
async_trait
Rust 1.75 added support for async fn in traits, which is now more than 6 months old, making it reasonable to set MSRV to.
Moving away from async-trait makes the codebase more LSP-friendly, as rust-analyzer has much better support for the standard async fn.
async-trait
rust-analyzer
It also makes implementing async traits downstream easier as they have one fewer dependency to add.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Rust 1.75 added support for async fn in traits, which is now more than 6 months old, making it reasonable to set MSRV to.
Moving away from
async-trait
makes the codebase more LSP-friendly, asrust-analyzer
has much better support for the standard async fn.It also makes implementing async traits downstream easier as they have one fewer dependency to add.
The text was updated successfully, but these errors were encountered: