2017-08-03 18:58:44 +00:00
|
|
|
#![cfg_attr(feature = "cargo-clippy", allow(unused_io_amount))]
|
|
|
|
|
|
|
|
#[macro_use] extern crate error_chain;
|
|
|
|
#[macro_use] extern crate futures;
|
|
|
|
#[macro_use] extern crate lazy_static;
|
|
|
|
#[macro_use] extern crate log;
|
|
|
|
#[macro_use] extern crate serde_derive;
|
|
|
|
|
|
|
|
extern crate base64;
|
|
|
|
extern crate byteorder;
|
2018-01-21 20:52:31 +00:00
|
|
|
extern crate bytes;
|
2017-08-03 18:58:44 +00:00
|
|
|
extern crate crypto;
|
|
|
|
extern crate hyper;
|
|
|
|
extern crate num_bigint;
|
|
|
|
extern crate num_integer;
|
|
|
|
extern crate num_traits;
|
|
|
|
extern crate protobuf;
|
|
|
|
extern crate rand;
|
|
|
|
extern crate rpassword;
|
|
|
|
extern crate serde;
|
|
|
|
extern crate serde_json;
|
|
|
|
extern crate shannon;
|
|
|
|
extern crate tokio_core;
|
2018-01-21 20:52:31 +00:00
|
|
|
extern crate tokio_io;
|
2017-08-03 18:58:44 +00:00
|
|
|
extern crate uuid;
|
|
|
|
|
2017-08-03 20:22:08 +00:00
|
|
|
extern crate librespot_protocol as protocol;
|
2017-08-03 18:58:44 +00:00
|
|
|
|
|
|
|
#[macro_use] mod component;
|
|
|
|
pub mod apresolve;
|
|
|
|
pub mod audio_key;
|
|
|
|
pub mod authentication;
|
|
|
|
pub mod cache;
|
|
|
|
pub mod channel;
|
|
|
|
pub mod config;
|
|
|
|
pub mod diffie_hellman;
|
2018-02-06 18:54:28 +00:00
|
|
|
pub mod keymaster;
|
2017-08-03 18:58:44 +00:00
|
|
|
pub mod mercury;
|
|
|
|
pub mod session;
|
|
|
|
pub mod util;
|
|
|
|
pub mod version;
|
|
|
|
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/lib.rs"));
|