mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
32 lines
593 B
Rust
32 lines
593 B
Rust
#[macro_use]
|
|
extern crate log;
|
|
|
|
extern crate byteorder;
|
|
extern crate futures;
|
|
|
|
#[cfg(feature = "alsa-backend")]
|
|
extern crate alsa;
|
|
|
|
#[cfg(feature = "portaudio-rs")]
|
|
extern crate portaudio_rs;
|
|
|
|
#[cfg(feature = "libpulse-sys")]
|
|
extern crate libpulse_sys;
|
|
|
|
#[cfg(feature = "jackaudio-backend")]
|
|
extern crate jack;
|
|
|
|
#[cfg(feature = "sdl-backend")]
|
|
extern crate sdl2;
|
|
|
|
#[cfg(feature = "libc")]
|
|
extern crate libc;
|
|
|
|
extern crate librespot_audio as audio;
|
|
extern crate librespot_core;
|
|
extern crate librespot_metadata as metadata;
|
|
|
|
pub mod audio_backend;
|
|
pub mod config;
|
|
pub mod mixer;
|
|
pub mod player;
|