librespot/src/lib.rs

43 lines
835 B
Rust
Raw Normal View History

#![crate_name = "librespot"]
2016-01-01 23:16:12 +00:00
#![feature(plugin,zero_one,iter_arith,mpsc_select,clone_from_slice,convert)]
#![plugin(protobuf_macros)]
2016-01-01 23:16:12 +00:00
#![plugin(json_macros)]
#[macro_use] extern crate lazy_static;
2015-09-01 11:20:37 +00:00
extern crate bit_set;
extern crate byteorder;
extern crate crypto;
2016-01-01 23:16:12 +00:00
extern crate dns_sd;
2015-09-01 11:20:37 +00:00
extern crate eventual;
extern crate num;
extern crate portaudio;
extern crate protobuf;
extern crate shannon;
extern crate rand;
2016-01-01 23:16:12 +00:00
extern crate rustc_serialize;
extern crate time;
2016-01-01 23:16:12 +00:00
extern crate tiny_http;
extern crate tempfile;
2016-01-01 23:16:12 +00:00
extern crate url;
2015-09-01 11:20:37 +00:00
extern crate vorbis;
extern crate librespot_protocol;
#[macro_use] pub mod util;
2016-01-01 23:16:12 +00:00
mod audio_decrypt;
mod audio_file;
mod audio_key;
mod authentication;
mod connection;
mod diffie_hellman;
pub mod discovery;
pub mod mercury;
pub mod metadata;
pub mod player;
pub mod session;
pub mod spirc;
2016-01-01 23:16:12 +00:00
mod stream;
2015-09-01 14:53:09 +00:00