refactor: remove lazy_static crate

The `lazy_static` crate was superseded by the `once_cell` crate which
has been included in Rust's standard library since version `1.70`.
Remove the `lazy_static` dependency and refactor all use cases to use
`std::sync::OnceLock` instead.

Co-authored-by: Henrik Friedrichsen <henrik@affekt.org>
This commit is contained in:
Thomas Frans
2023-10-07 17:33:48 +02:00
committed by GitHub
parent 2f365c1551
commit 209d8e260b
9 changed files with 30 additions and 28 deletions

1
Cargo.lock generated
View File

@@ -1968,7 +1968,6 @@ dependencies = [
"fern",
"futures",
"ioctl-rs",
"lazy_static",
"libc",
"librespot-core",
"librespot-playback",