rpm-software-management / librpm.rs

Rust bindings to the RPM Package Manager libraries (librpm, librpmbuild, librpmsign)
https://rustrpm.org/librpm/
Mozilla Public License 2.0
32 stars 14 forks source link

Replace lazy_static with once_cell #27

Closed dralley closed 2 years ago

dralley commented 2 years ago

The once_cell API is currently being incorporated into the stdlib. It's macro-less and more powerful.

https://github.com/rust-lang/rust/issues/74465

dralley commented 2 years ago

addressed