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
lazy_static
std
LazyLock
Remove the lazy_static dependency
Since Rust 1.80, lazy_static's functionality can by replaced by the std counterpart LazyLock. See https://blog.rust-lang.org/2024/07/25/Rust-1.80.0.html for more information.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Problem to solve
Remove the
lazy_static
dependencyProposal
Since Rust 1.80,
lazy_static
's functionality can by replaced by thestd
counterpartLazyLock
. See https://blog.rust-lang.org/2024/07/25/Rust-1.80.0.html for more information.Tasks to complete
lazy_static
withLazyLock
The text was updated successfully, but these errors were encountered: