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:
parent
0984ad0bf0
commit
38351c9a87
6 changed files with 47 additions and 7 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue