librespot/playback/src/lib.rs

43 lines
895 B
Rust
Raw Normal View History

2018-02-26 01:50:41 +00:00
#[macro_use]
extern crate log;
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;
#[cfg(feature = "alsa-backend")]
extern crate alsa;
#[cfg(feature = "portaudio-backend")]
extern crate portaudio_rs;
#[cfg(feature = "pulseaudio-backend")]
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;
#[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;
#[cfg(feature = "libc")]
extern crate libc;
extern crate librespot_audio as audio;
2019-09-16 19:00:09 +00:00
extern crate librespot_core;
extern crate librespot_metadata as metadata;
pub mod audio_backend;
pub mod config;
pub mod mixer;
pub mod player;