mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
4580dab73f
* core: Obtain spclient access token using login5 instead of keymaster (Fixes #1179) * core: move solving hashcash into util * login5: add login for mobile --------- Co-authored-by: Nick Steel <nick@nsteel.co.uk>
43 lines
729 B
Rust
43 lines
729 B
Rust
#[macro_use]
|
|
extern crate log;
|
|
|
|
use librespot_protocol as protocol;
|
|
|
|
#[macro_use]
|
|
mod component;
|
|
|
|
pub mod apresolve;
|
|
pub mod audio_key;
|
|
pub mod authentication;
|
|
pub mod cache;
|
|
pub mod cdn_url;
|
|
pub mod channel;
|
|
pub mod config;
|
|
mod connection;
|
|
pub mod date;
|
|
#[allow(dead_code)]
|
|
mod dealer;
|
|
#[doc(hidden)]
|
|
pub mod diffie_hellman;
|
|
pub mod error;
|
|
pub mod file_id;
|
|
pub mod http_client;
|
|
pub mod login5;
|
|
pub mod mercury;
|
|
pub mod packet;
|
|
mod proxytunnel;
|
|
pub mod session;
|
|
mod socket;
|
|
#[allow(dead_code)]
|
|
pub mod spclient;
|
|
pub mod spotify_id;
|
|
pub mod token;
|
|
#[doc(hidden)]
|
|
pub mod util;
|
|
pub mod version;
|
|
|
|
pub use config::SessionConfig;
|
|
pub use error::Error;
|
|
pub use file_id::FileId;
|
|
pub use session::Session;
|
|
pub use spotify_id::SpotifyId;
|