librespot/src/lib.rs

39 lines
789 B
Rust
Raw Normal View History

#![crate_name = "librespot"]
2015-09-01 11:20:37 +00:00
#![feature(plugin,read_exact,zero_one,iter_arith,slice_bytes,arc_weak,append,mpsc_select)]
#![allow(needless_return)]
2015-09-01 11:20:37 +00:00
#![plugin(clippy)]
#![plugin(protobuf_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;
2015-09-01 11:20:37 +00:00
extern crate eventual;
extern crate gmp;
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;
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;
pub mod spirc;
pub mod stream;
pub mod subsystem;