-
-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
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
Migrate from lazy_static to OnceLock #108
Comments
nyarly
changed the title
Migrate from lazy_static to once_cell
Migrate from lazy_static to OnceLock
Mar 28, 2024
1 task
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
lazy_static
is in the process of being deprecated (rust-lang-nursery/lazy-static.rs#214)As of Rust 1.70,
std::sync::OnceLock
exists as a replacement. When we can reliably expect 1.70 on our supported Nixpkgs, we should make the switch.The text was updated successfully, but these errors were encountered: