lib.rs 549 B

12345678910111213141516171819202122232425262728
  1. #[macro_use] extern crate log;
  2. extern crate futures;
  3. extern crate byteorder;
  4. #[cfg(feature = "alsa-backend")]
  5. extern crate alsa;
  6. #[cfg(feature = "portaudio-rs")]
  7. extern crate portaudio_rs;
  8. #[cfg(feature = "libpulse-sys")]
  9. extern crate libpulse_sys;
  10. #[cfg(feature = "jackaudio-backend")]
  11. extern crate jack;
  12. #[cfg(feature = "libc")]
  13. extern crate libc;
  14. extern crate librespot_audio as audio;
  15. extern crate librespot_core as core;
  16. extern crate librespot_metadata as metadata;
  17. pub mod audio_backend;
  18. pub mod config;
  19. pub mod mixer;
  20. pub mod player;