1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-03 17:59:24 +02:00

Merge pull request #305 from ashthespy/dynamic-playlists

Support for Spotify Radio/Dynamic Playlists
This commit is contained in:
Sasha Hilton 2019-03-20 11:41:29 +01:00 committed by GitHub
commit 8b32e7a63e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 225 additions and 6 deletions

View file

@ -2,6 +2,9 @@
extern crate log;
#[macro_use]
extern crate serde_json;
#[macro_use]
extern crate serde_derive;
extern crate serde;
extern crate base64;
extern crate futures;
@ -27,5 +30,6 @@ extern crate librespot_core as core;
extern crate librespot_playback as playback;
extern crate librespot_protocol as protocol;
pub mod context;
pub mod discovery;
pub mod spirc;