2015-07-08 18:28:17 +00:00
|
|
|
#![crate_name = "librespot"]
|
|
|
|
|
2016-03-07 18:16:43 +00:00
|
|
|
#![cfg_attr(not(feature = "with-syntex"), feature(plugin))]
|
|
|
|
#![cfg_attr(not(feature = "with-syntex"), plugin(protobuf_macros))]
|
|
|
|
#![cfg_attr(not(feature = "with-syntex"), plugin(json_macros))]
|
2015-07-08 18:28:17 +00:00
|
|
|
|
2016-01-02 15:19:39 +00:00
|
|
|
#[macro_use]
|
|
|
|
extern crate lazy_static;
|
2015-07-08 18:28:17 +00:00
|
|
|
|
2015-09-01 11:20:37 +00:00
|
|
|
extern crate bit_set;
|
2015-07-08 18:28:17 +00:00
|
|
|
extern crate byteorder;
|
|
|
|
extern crate crypto;
|
2015-09-01 11:20:37 +00:00
|
|
|
extern crate eventual;
|
2016-03-13 20:03:09 +00:00
|
|
|
extern crate hyper;
|
2015-07-08 18:28:17 +00:00
|
|
|
extern crate num;
|
|
|
|
extern crate portaudio;
|
|
|
|
extern crate protobuf;
|
|
|
|
extern crate shannon;
|
|
|
|
extern crate rand;
|
2016-01-01 23:16:12 +00:00
|
|
|
extern crate rustc_serialize;
|
2015-07-08 18:28:17 +00:00
|
|
|
extern crate time;
|
2016-01-01 23:16:12 +00:00
|
|
|
extern crate tiny_http;
|
2015-07-08 18:28:17 +00:00
|
|
|
extern crate tempfile;
|
2016-01-01 23:16:12 +00:00
|
|
|
extern crate url;
|
2016-03-13 15:15:15 +00:00
|
|
|
|
|
|
|
#[cfg(not(feature = "with-tremor"))]
|
2015-09-01 11:20:37 +00:00
|
|
|
extern crate vorbis;
|
2016-03-13 15:15:15 +00:00
|
|
|
#[cfg(feature = "with-tremor")]
|
|
|
|
extern crate tremor as vorbis;
|
2015-07-08 18:28:17 +00:00
|
|
|
|
2016-01-02 01:12:07 +00:00
|
|
|
#[cfg(feature = "dns-sd")]
|
|
|
|
extern crate dns_sd;
|
|
|
|
|
2016-01-27 10:40:00 +00:00
|
|
|
extern crate librespot_protocol as protocol;
|
2015-07-08 18:28:17 +00:00
|
|
|
|
2016-03-07 18:16:43 +00:00
|
|
|
#[cfg(feature = "with-syntex")]
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/lib.rs"));
|
|
|
|
|
|
|
|
#[cfg(not(feature = "with-syntex"))]
|
|
|
|
include!("lib.in.rs");
|