cloudflare/pingora

Replace once_cell dependency with std LazyLock and OnceLock

Open

#721 aperta il 2 nov 2025

Vedi su GitHub
 (0 commenti) (0 reazioni) (0 assegnatari)Rust (1642 fork)batch import
help wanted

Metriche repository

Star
 (26.634 star)
Metriche merge PR
 (Merge medio 1g 15h) (3 PR mergiate in 30 g)

Descrizione

What is the problem your feature solves, or the need it fulfills?

once_cell provides lazy initialization primitives (Lazy, OnceCell). It's now in the standard library as LazyLock and OnceLock. Continuing to use once_cell adds an unnecessary external dependency when the same functionality is now available natively in Rust's standard library.

Describe the solution you'd like

replace all it's usages with the standard library equivalents as it will be a 1 to 1 replacement:

  • once_cell::sync::Lazy -> std::sync::LazyLock
  • once_cell::sync::OnceCell -> std::sync::OnceLock

except for try_insert(), found in pingora-runtime/src/lib.rs, as it is not stable yet issue, it's alternative would be doing set() then get().unwrap() till it gets stabilized.

Describe alternatives you've considered

Keep using once_cell

Guida contributor