exercism / rust-test-runner

GNU Affero General Public License v3.0
3 stars 15 forks source link

Remove redundant lazy_static and once_cell #143

Closed senekor closed 3 months ago

senekor commented 3 months ago

As of Rust 1.80, the functionality of these two crates has been stabilized in the standard library.

See https://blog.rust-lang.org/2024/07/25/Rust-1.80.0.html#lazycell-and-lazylock

senekor commented 3 months ago

This is will break many solutions. For example, lazy_static was very useful for robot-name. There are two reasons I think it's worth it: