1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-04 18:29:45 +02:00

Make dns-sd optional

This commit is contained in:
Paul Lietar 2016-01-02 02:12:07 +01:00
parent 0984ad0bf0
commit 38351c9a87
6 changed files with 47 additions and 7 deletions

View file

@ -9,7 +9,6 @@
extern crate bit_set;
extern crate byteorder;
extern crate crypto;
extern crate dns_sd;
extern crate eventual;
extern crate num;
extern crate portaudio;
@ -23,6 +22,9 @@ extern crate tempfile;
extern crate url;
extern crate vorbis;
#[cfg(feature = "dns-sd")]
extern crate dns_sd;
extern crate librespot_protocol;
#[macro_use] pub mod util;
@ -39,4 +41,5 @@ pub mod player;
pub mod session;
pub mod spirc;
mod stream;
mod zeroconf;