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

Add Facebook based login.

This commit is contained in:
Paul Lietar 2016-03-16 00:05:05 +00:00
parent 4d712efb48
commit 4b4bc2f4e1
12 changed files with 383 additions and 42 deletions

View file

@ -4,6 +4,9 @@
#![cfg_attr(not(feature = "with-syntex"), plugin(protobuf_macros))]
#![cfg_attr(not(feature = "with-syntex"), plugin(json_macros))]
#![cfg_attr(feature="clippy", feature(plugin))]
#![cfg_attr(feature="clippy", plugin(clippy))]
#[macro_use]
extern crate lazy_static;
@ -31,6 +34,9 @@ extern crate tremor as vorbis;
#[cfg(feature = "dns-sd")]
extern crate dns_sd;
#[cfg(feature = "openssl")]
extern crate openssl;
extern crate librespot_protocol as protocol;
#[cfg(feature = "with-syntex")]