Spotify use core and playback crates
Depend on just the crates we use. Which then exposes missing tokio feature here:
error[E0599]: no function or associated item named `new_multi_thread` found for struct `tokio::runtime::Builder` in the current scope
--> audio/spotify/src/spotifyaudiosrc/imp.rs:40:23
|
40 | runtime::Builder::new_multi_thread()
| ^^^^^^^^^^^^^^^^ function or associated item not found in `Builder`
We requires tokio's "rt-multi-thread" feature. I don't really understand how this worked previously....