Closed bkchr closed 1 month ago
We should be able to replace all lazy_static usages with OnceLock from the Rust standard library. This will bring us less dependencies. The lazy_static README gives an example on how to do this.
lazy_static
OnceLock
I would like to work on this, please assign to me
Done
We should be able to replace all
lazy_static
usages withOnceLock
from the Rust standard library. This will bring us less dependencies. The lazy_static README gives an example on how to do this.