You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We started doing this a bit already (see: #2934 ) but it would be nice to remove the lazy_static dependency here. It's an old crate that hasn't been updated in several years.
The text was updated successfully, but these errors were encountered:
Yep we shouldn't be using lazy_static any more -- and in fact can switch to std::sync::OnceLock (the Rust std import of once_cell) if we don't need the Lazy type.
We started doing this a bit already (see: #2934 ) but it would be nice to remove the lazy_static dependency here. It's an old crate that hasn't been updated in several years.
The text was updated successfully, but these errors were encountered: