mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-28 17:21:52 +00:00
23 lines
433 B
Rust
23 lines
433 B
Rust
|
#[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;
|
||
|
|
||
|
pub mod discovery;
|