2018-02-26 01:50:41 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate log;
|
2018-02-09 01:05:50 +00:00
|
|
|
|
2018-02-23 19:08:20 +00:00
|
|
|
extern crate byteorder;
|
2018-02-26 01:50:41 +00:00
|
|
|
extern crate futures;
|
2020-01-24 00:35:24 +00:00
|
|
|
extern crate shell_words;
|
2018-02-09 01:05:50 +00:00
|
|
|
|
|
|
|
#[cfg(feature = "alsa-backend")]
|
|
|
|
extern crate alsa;
|
|
|
|
|
2020-11-27 01:57:49 +00:00
|
|
|
#[cfg(feature = "portaudio-backend")]
|
2018-02-09 01:05:50 +00:00
|
|
|
extern crate portaudio_rs;
|
|
|
|
|
2020-11-27 01:57:49 +00:00
|
|
|
#[cfg(feature = "pulseaudio-backend")]
|
2018-02-09 01:05:50 +00:00
|
|
|
extern crate libpulse_sys;
|
|
|
|
|
|
|
|
#[cfg(feature = "jackaudio-backend")]
|
|
|
|
extern crate jack;
|
|
|
|
|
2020-04-07 03:54:05 +00:00
|
|
|
#[cfg(feature = "gstreamer-backend")]
|
|
|
|
extern crate glib;
|
2019-12-25 11:19:12 +00:00
|
|
|
#[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;
|
|
|
|
|
2018-12-28 02:46:27 +00:00
|
|
|
#[cfg(feature = "sdl-backend")]
|
|
|
|
extern crate sdl2;
|
|
|
|
|
2018-02-09 01:05:50 +00:00
|
|
|
#[cfg(feature = "libc")]
|
|
|
|
extern crate libc;
|
|
|
|
|
|
|
|
extern crate librespot_audio as audio;
|
2019-09-16 19:00:09 +00:00
|
|
|
extern crate librespot_core;
|
2018-02-09 01:05:50 +00:00
|
|
|
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;
|