mirror of
https://github.com/librespot-org/librespot.git
synced 2025-10-05 02:39:53 +02:00
50 lines
1.1 KiB
Rust
50 lines
1.1 KiB
Rust
#![crate_name = "librespot"]
|
|
|
|
#![cfg_attr(feature = "cargo-clippy", allow(unused_io_amount))]
|
|
|
|
#[macro_use] extern crate log;
|
|
#[macro_use] extern crate serde_json;
|
|
#[macro_use] extern crate serde_derive;
|
|
|
|
extern crate base64;
|
|
extern crate crypto;
|
|
extern crate futures;
|
|
extern crate hyper;
|
|
extern crate num_bigint;
|
|
extern crate protobuf;
|
|
extern crate rand;
|
|
extern crate tokio_core;
|
|
extern crate url;
|
|
|
|
pub extern crate librespot_audio as audio;
|
|
pub extern crate librespot_core as core;
|
|
pub extern crate librespot_protocol as protocol;
|
|
pub extern crate librespot_metadata as metadata;
|
|
|
|
#[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;
|
|
|
|
#[cfg(feature = "with-dns-sd")]
|
|
extern crate dns_sd;
|
|
|
|
#[cfg(not(feature = "with-dns-sd"))]
|
|
extern crate mdns;
|
|
|
|
pub mod audio_backend;
|
|
pub mod discovery;
|
|
pub mod mixer;
|
|
pub mod player;
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/lib.rs"));
|