1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-03 09:49:31 +02:00

replace rust-crypto's hashes, HMAC and PBKDF2

This commit is contained in:
newpavlov 2018-07-23 16:41:39 +03:00
parent 431be9e847
commit e4677027d2
13 changed files with 253 additions and 101 deletions

View file

@ -4,7 +4,6 @@ extern crate log;
extern crate serde_json;
extern crate base64;
extern crate crypto;
extern crate futures;
extern crate hyper;
extern crate num_bigint;
@ -13,6 +12,11 @@ extern crate rand;
extern crate tokio_core;
extern crate url;
extern crate sha1;
extern crate hmac;
extern crate aes;
extern crate block_modes;
#[cfg(feature = "with-dns-sd")]
extern crate dns_sd;