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
In the new attribute macro, async-std expansion does not work. This is due to differences between how tokio::main expands and async_std::main expands.
async-std
tokio::main
async_std::main
Here are some suggestions for those wishing to take this on:
#[async_std::main]
fn_name
main
load_and_modify
Result
PRs are welcome :)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the new attribute macro,
async-std
expansion does not work. This is due to differences between howtokio::main
expands andasync_std::main
expands.Here are some suggestions for those wishing to take this on:
#[async_std::main]
callfn_name
ismain
async-std
as a dependency in dotenvy-macrosload_and_modify
should be called before the async runtime is spawnedResult
, emptyPRs are welcome :)
The text was updated successfully, but these errors were encountered: