1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-03 17:59:24 +02:00

connect: discovery and spirc

This commit is contained in:
awiouy 2018-02-11 16:57:55 +01:00
parent 191caca518
commit d900134114
10 changed files with 21 additions and 15 deletions

26
connect/src/lib.rs Normal file
View file

@ -0,0 +1,26 @@
#[macro_use] extern crate log;
#[macro_use] extern crate serde_json;
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;
#[cfg(feature = "with-dns-sd")]
extern crate dns_sd;
#[cfg(not(feature = "with-dns-sd"))]
extern crate mdns;
extern crate librespot_core as core;
extern crate librespot_playback as playback;
extern crate librespot_protocol as protocol;
pub mod discovery;
include!(concat!(env!("OUT_DIR"), "/lib.rs"));