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

Merge branch 'master' into error-source-fix

This commit is contained in:
Sasha Hilton 2019-03-20 16:48:41 +01:00 committed by GitHub
commit 1ccf00cfbb
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
29 changed files with 1549 additions and 875 deletions

View file

@ -14,7 +14,6 @@ extern crate serde_derive;
extern crate base64;
extern crate byteorder;
extern crate bytes;
extern crate crypto;
extern crate extprim;
extern crate httparse;
extern crate hyper;
@ -33,6 +32,10 @@ extern crate tokio_core;
extern crate tokio_io;
extern crate url;
extern crate uuid;
extern crate sha1;
extern crate hmac;
extern crate pbkdf2;
extern crate aes;
extern crate librespot_protocol as protocol;