lib.rs 525 B

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