2018-02-11 17:52:53 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_json;
|
2018-10-12 17:15:26 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate serde_derive;
|
|
|
|
extern crate serde;
|
2018-02-06 00:00:00 +00:00
|
|
|
|
|
|
|
extern crate base64;
|
|
|
|
extern crate futures;
|
|
|
|
extern crate hyper;
|
|
|
|
extern crate num_bigint;
|
|
|
|
extern crate protobuf;
|
|
|
|
extern crate rand;
|
|
|
|
extern crate tokio_core;
|
|
|
|
extern crate url;
|
|
|
|
|
2018-07-30 11:18:43 +00:00
|
|
|
extern crate aes_ctr;
|
2018-07-23 13:41:39 +00:00
|
|
|
extern crate block_modes;
|
2019-10-08 09:31:18 +00:00
|
|
|
extern crate hmac;
|
|
|
|
extern crate sha1;
|
2018-07-23 13:41:39 +00:00
|
|
|
|
2018-02-06 00:00:00 +00:00
|
|
|
#[cfg(feature = "with-dns-sd")]
|
|
|
|
extern crate dns_sd;
|
|
|
|
|
|
|
|
#[cfg(not(feature = "with-dns-sd"))]
|
2019-11-06 15:39:31 +00:00
|
|
|
extern crate libmdns;
|
2018-02-06 00:00:00 +00:00
|
|
|
|
2019-09-16 19:00:09 +00:00
|
|
|
extern crate librespot_core;
|
2018-02-11 15:57:55 +00:00
|
|
|
extern crate librespot_playback as playback;
|
|
|
|
extern crate librespot_protocol as protocol;
|
2018-02-06 00:00:00 +00:00
|
|
|
|
2019-03-13 19:35:46 +00:00
|
|
|
pub mod context;
|
2018-02-06 00:00:00 +00:00
|
|
|
pub mod discovery;
|
2018-02-16 21:04:37 +00:00
|
|
|
pub mod spirc;
|