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

Add spclient and HTTPS support

* Change metadata to use spclient
 * Add support for HTTPS proxies
 * Start purging unwraps and using Result instead
This commit is contained in:
Roderick van Domburg 2021-11-26 23:21:27 +01:00
parent 56585cabb6
commit d19fd24074
No known key found for this signature in database
GPG key ID: A9EF5222A26F0451
19 changed files with 652 additions and 100 deletions

View file

@ -7,7 +7,7 @@ use librespot_protocol as protocol;
#[macro_use]
mod component;
mod apresolve;
pub mod apresolve;
pub mod audio_key;
pub mod authentication;
pub mod cache;
@ -24,9 +24,10 @@ pub mod packet;
mod proxytunnel;
pub mod session;
mod socket;
mod spclient;
#[allow(dead_code)]
pub mod spclient;
pub mod spotify_id;
mod token;
pub mod token;
#[doc(hidden)]
pub mod util;
pub mod version;