mirror of
https://github.com/oSumAtrIX/free-librespot.git
synced 2025-12-20 10:24:22 +00:00
28 lines
549 B
Rust
28 lines
549 B
Rust
#[macro_use] extern crate log;
|
|
|
|
extern crate futures;
|
|
extern crate byteorder;
|
|
|
|
#[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 = "libc")]
|
|
extern crate libc;
|
|
|
|
extern crate librespot_audio as audio;
|
|
extern crate librespot_core as core;
|
|
extern crate librespot_metadata as metadata;
|
|
|
|
pub mod audio_backend;
|
|
pub mod config;
|
|
pub mod mixer;
|
|
pub mod player;
|