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

Fix build on latest rust.

This commit is contained in:
Paul Lietar 2015-09-01 13:20:37 +02:00
parent ab7b5ba69d
commit 267ccbe65e
14 changed files with 292 additions and 258 deletions

View file

@ -1,25 +1,25 @@
#![crate_name = "librespot"]
#![feature(plugin,scoped,zero_one,iter_arith,slice_position_elem,slice_bytes,bitset,arc_weak,append,future,mpsc_select)]
#![allow(deprecated)]
//#![allow(unused_imports,dead_code)]
#![feature(plugin,read_exact,zero_one,iter_arith,slice_bytes,arc_weak,append,mpsc_select)]
#![allow(needless_return)]
#![plugin(clippy)]
#![plugin(protobuf_macros)]
#[macro_use] extern crate lazy_static;
extern crate bit_set;
extern crate byteorder;
extern crate crypto;
extern crate eventual;
extern crate gmp;
extern crate num;
extern crate portaudio;
extern crate protobuf;
extern crate shannon;
extern crate rand;
extern crate readall;
extern crate vorbis;
extern crate time;
extern crate tempfile;
extern crate vorbis;
extern crate librespot_protocol;