2015-07-08 18:28:17 +00:00
|
|
|
#![crate_name = "librespot"]
|
2017-01-29 16:25:09 +00:00
|
|
|
#![cfg_attr(feature = "cargo-clippy", allow(unused_io_amount))]
|
|
|
|
|
2017-02-09 01:27:52 +00:00
|
|
|
extern crate base64;
|
2017-08-03 19:37:04 +00:00
|
|
|
extern crate futures;
|
2016-03-13 20:03:09 +00:00
|
|
|
extern crate hyper;
|
2017-01-29 12:50:18 +00:00
|
|
|
extern crate num_bigint;
|
2015-07-08 18:28:17 +00:00
|
|
|
extern crate protobuf;
|
|
|
|
extern crate rand;
|
2017-01-18 05:57:36 +00:00
|
|
|
extern crate tokio_core;
|
2017-01-18 15:17:10 +00:00
|
|
|
extern crate url;
|
2017-01-18 05:57:36 +00:00
|
|
|
|
2017-08-03 19:37:04 +00:00
|
|
|
pub extern crate librespot_audio as audio;
|
2018-02-11 15:57:55 +00:00
|
|
|
pub extern crate librespot_connect as connect;
|
2017-08-03 18:58:44 +00:00
|
|
|
pub extern crate librespot_core as core;
|
2018-02-26 01:50:41 +00:00
|
|
|
pub extern crate librespot_metadata as metadata;
|
2018-02-09 01:05:50 +00:00
|
|
|
pub extern crate librespot_playback as playback;
|
2017-02-09 01:27:52 +00:00
|
|
|
pub extern crate librespot_protocol as protocol;
|