librespot/connect/src/lib.rs

29 lines
571 B
Rust
Raw Normal View History

2018-02-11 17:52:53 +00:00
#[macro_use]
extern crate log;
#[macro_use]
extern crate serde_json;
2018-02-06 00:00:00 +00:00
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;
2018-02-11 15:57:55 +00:00
extern crate librespot_playback as playback;
extern crate librespot_protocol as protocol;
2018-02-06 00:00:00 +00:00
pub mod discovery;
2018-02-11 15:57:55 +00:00
include!(concat!(env!("OUT_DIR"), "/lib.rs"));