2015-07-08 18:28:17 +00:00
|
|
|
#![crate_name = "librespot"]
|
|
|
|
|
2015-12-28 15:53:54 +00:00
|
|
|
#![feature(plugin,zero_one,iter_arith,mpsc_select,clone_from_slice)]
|
2015-07-08 18:28:17 +00:00
|
|
|
|
|
|
|
#![plugin(protobuf_macros)]
|
|
|
|
#[macro_use] extern crate lazy_static;
|
|
|
|
|
2015-09-01 11:20:37 +00:00
|
|
|
extern crate bit_set;
|
2015-07-08 18:28:17 +00:00
|
|
|
extern crate byteorder;
|
|
|
|
extern crate crypto;
|
2015-09-01 11:20:37 +00:00
|
|
|
extern crate eventual;
|
2015-07-08 18:28:17 +00:00
|
|
|
extern crate num;
|
|
|
|
extern crate portaudio;
|
|
|
|
extern crate protobuf;
|
|
|
|
extern crate shannon;
|
|
|
|
extern crate rand;
|
|
|
|
extern crate time;
|
|
|
|
extern crate tempfile;
|
2015-09-01 11:20:37 +00:00
|
|
|
extern crate vorbis;
|
2015-07-08 18:28:17 +00:00
|
|
|
|
|
|
|
extern crate librespot_protocol;
|
|
|
|
|
|
|
|
#[macro_use] pub mod util;
|
|
|
|
pub mod audio_decrypt;
|
|
|
|
pub mod audio_file;
|
|
|
|
pub mod audio_key;
|
|
|
|
pub mod connection;
|
|
|
|
pub mod keys;
|
|
|
|
pub mod mercury;
|
|
|
|
pub mod metadata;
|
|
|
|
pub mod player;
|
|
|
|
pub mod session;
|
2015-07-08 19:50:44 +00:00
|
|
|
pub mod spirc;
|
2015-07-08 18:28:17 +00:00
|
|
|
pub mod stream;
|
2015-09-01 14:53:09 +00:00
|
|
|
|