lib.rs 549 B

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