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

Add support for lewton as an Vorbis decoder.

This commit is contained in:
Paul Lietar 2017-08-03 21:22:08 +01:00
parent ec8f80df75
commit d1447d2bfb
10 changed files with 250 additions and 151 deletions

View file

@ -10,13 +10,9 @@
#[macro_use] extern crate serde_derive;
extern crate base64;
extern crate bit_set;
extern crate byteorder;
extern crate crypto;
extern crate getopts;
extern crate hyper;
extern crate linear_map;
extern crate mdns;
extern crate num_bigint;
extern crate num_integer;
extern crate num_traits;
@ -26,13 +22,10 @@ extern crate rpassword;
extern crate serde;
extern crate serde_json;
extern crate shannon;
extern crate tempfile;
extern crate tokio_core;
extern crate tokio_proto;
extern crate url;
extern crate uuid;
pub extern crate librespot_protocol as protocol;
extern crate librespot_protocol as protocol;
#[macro_use] mod component;
pub mod apresolve;