1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
#[macro_use] extern crate log; extern crate byteorder; extern crate futures; extern crate shell_words; #[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 = "gstreamer-backend")] extern crate glib; #[cfg(feature = "gstreamer-backend")] extern crate gstreamer as gst; #[cfg(feature = "gstreamer-backend")] extern crate gstreamer_app as gst_app; #[cfg(feature = "gstreamer-backend")] extern crate zerocopy; #[cfg(feature = "sdl-backend")] extern crate sdl2; #[cfg(feature = "libc")] extern crate libc; extern crate librespot_audio as audio; extern crate librespot_core; extern crate librespot_metadata as metadata; pub mod audio_backend; pub mod config; pub mod mixer; pub mod player;