2018-02-09 01:05:50 +00:00
|
|
|
#[macro_use] extern crate log;
|
|
|
|
|
|
|
|
extern crate futures;
|
2018-02-23 19:08:20 +00:00
|
|
|
extern crate byteorder;
|
2018-02-09 01:05:50 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "alsa-backend")]
|
|
|
|
extern crate alsa;
|
|
|
|
|
|
|
|
#[cfg(feature = "portaudio-rs")]
|
|
|
|
extern crate portaudio_rs;
|
|
|
|
|
|
|
|
#[cfg(feature = "libpulse-sys")]
|
|
|
|
extern crate libpulse_sys;
|
|
|
|
|
|
|
|
#[cfg(feature = "jackaudio-backend")]
|
|
|
|
extern crate jack;
|
|
|
|
|
|
|
|
#[cfg(feature = "libc")]
|
|
|
|
extern crate libc;
|
|
|
|
|
|
|
|
extern crate librespot_audio as audio;
|
|
|
|
extern crate librespot_core as core;
|
|
|
|
extern crate librespot_metadata as metadata;
|
|
|
|
|
|
|
|
pub mod audio_backend;
|
2018-02-11 15:13:42 +00:00
|
|
|
pub mod config;
|
2018-02-09 01:05:50 +00:00
|
|
|
pub mod mixer;
|
|
|
|
pub mod player;
|