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

Only use syntex on modules that need it.

Also updated dependencies.

Fixes #133 and #138
This commit is contained in:
Paul Lietar 2016-12-31 12:51:44 +01:00
parent 7fd8503f45
commit 8544faf75d
6 changed files with 399 additions and 430 deletions

View file

@ -8,8 +8,8 @@
#![cfg_attr(feature="clippy", feature(plugin))]
#![cfg_attr(feature="clippy", plugin(clippy))]
#[macro_use]
extern crate lazy_static;
#[macro_use] extern crate lazy_static;
#[macro_use] extern crate log;
extern crate bit_set;
extern crate byteorder;
@ -22,18 +22,15 @@ extern crate lmdb_rs;
extern crate mdns;
extern crate num;
extern crate protobuf;
extern crate shannon;
extern crate rand;
extern crate rpassword;
extern crate rustc_serialize;
extern crate serde;
extern crate serde_json;
extern crate shannon;
extern crate tempfile;
extern crate url;
#[macro_use]
extern crate log;
#[cfg(not(feature = "with-tremor"))]
extern crate vorbis;
#[cfg(feature = "with-tremor")]
@ -53,17 +50,25 @@ extern crate libpulse_sys;
extern crate librespot_protocol as protocol;
// include!/include_bytes! don't play nice with syntex, so place these here
pub mod version {
include!(concat!(env!("OUT_DIR"), "/version.rs"));
pub mod album_cover;
pub mod audio_backend;
pub mod audio_decrypt;
pub mod audio_file2;
pub mod audio_file;
pub mod audio_key;
pub mod cache;
pub mod connection;
pub mod diffie_hellman;
pub mod link;
pub mod main_helper;
pub mod metadata;
pub mod player;
pub mod stream;
pub mod util;
pub mod version;
pub fn version_string() -> String {
format!("librespot-{}", short_sha())
}
}
#[cfg(feature = "facebook")]
pub mod spotilocal;
#[cfg(feature = "with-syntex")]
include!(concat!(env!("OUT_DIR"), "/lib.rs"));
#[cfg(not(feature = "with-syntex"))]
include!("lib.in.rs");
#[cfg(feature = "with-syntex")] include!(concat!(env!("OUT_DIR"), "/lib.rs"));
#[cfg(not(feature = "with-syntex"))] include!("lib.in.rs");