I really wish `lazy_static` was a Rust language feature. I'd be fine if it was an std-only syntax around `LazyLock`.
Because I was trying to avoid `lazy_static`, I used `&'static` instead of `Arc`, which bit me later. Hard. Had to do a lot of refactoring to get away from that.