Closed
Description
After #75648 is merged, usage of once_cell
in this module:
should be replaced by std::[OnceCell|SyncOnceCell]
. The dependency from corresponding Cargo.toml can be removed afterwards.
It might make sense to request a perf run, as crates.io version uses parking_lot, while the standard one uses std mutex, but I expect the difference to not matter -- fast path is equivalent for both.