1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-04 10:19:27 +02:00

Add zeroconf based authentication.

This commit is contained in:
Paul Lietar 2016-01-02 00:16:12 +01:00
parent 4806f3e85a
commit bead9daf78
14 changed files with 664 additions and 249 deletions

View file

@ -1,35 +1,42 @@
#![crate_name = "librespot"]
#![feature(plugin,zero_one,iter_arith,mpsc_select,clone_from_slice)]
#![feature(plugin,zero_one,iter_arith,mpsc_select,clone_from_slice,convert)]
#![plugin(protobuf_macros)]
#![plugin(json_macros)]
#[macro_use] extern crate lazy_static;
extern crate bit_set;
extern crate byteorder;
extern crate crypto;
extern crate dns_sd;
extern crate eventual;
extern crate num;
extern crate portaudio;
extern crate protobuf;
extern crate shannon;
extern crate rand;
extern crate rustc_serialize;
extern crate time;
extern crate tiny_http;
extern crate tempfile;
extern crate url;
extern crate vorbis;
extern crate librespot_protocol;
#[macro_use] pub mod util;
pub mod audio_decrypt;
pub mod audio_file;
pub mod audio_key;
pub mod connection;
pub mod keys;
mod audio_decrypt;
mod audio_file;
mod audio_key;
mod authentication;
mod connection;
mod diffie_hellman;
pub mod discovery;
pub mod mercury;
pub mod metadata;
pub mod player;
pub mod session;
pub mod spirc;
pub mod stream;
mod stream;