templates icon indicating copy to clipboard operation
templates copied to clipboard

Migrate the `components` template from `lazy_static` to use LazyCell or LazyLock

Open JayanAXHF opened this issue 2 months ago • 3 comments

lazy_static is largely obsolete in favour of options in the standard library like LazyCell and LazyLock. I suggest that we migrate the components template to use LazyCell (or LazyLock if thread safety is needed) instead.

JayanAXHF avatar Oct 02 '25 11:10 JayanAXHF