librespot/core/src/lib.rs

28 lines
432 B
Rust
Raw Normal View History

2021-01-21 20:49:39 +00:00
#![allow(clippy::unused_io_amount)]
2017-08-03 18:58:44 +00:00
2018-02-11 11:37:08 +00:00
#[macro_use]
extern crate log;
2017-08-03 18:58:44 +00:00
use librespot_protocol as protocol;
2017-08-03 18:58:44 +00:00
2018-02-11 11:37:08 +00:00
#[macro_use]
mod component;
2021-01-21 20:49:39 +00:00
2021-06-01 18:33:10 +00:00
mod apresolve;
2017-08-03 18:58:44 +00:00
pub mod audio_key;
pub mod authentication;
pub mod cache;
pub mod channel;
pub mod config;
mod connection;
2021-03-18 16:51:50 +00:00
#[doc(hidden)]
2017-08-03 18:58:44 +00:00
pub mod diffie_hellman;
2018-02-06 18:54:28 +00:00
pub mod keymaster;
2017-08-03 18:58:44 +00:00
pub mod mercury;
mod proxytunnel;
2017-08-03 18:58:44 +00:00
pub mod session;
2018-02-12 20:02:27 +00:00
pub mod spotify_id;
2021-03-18 16:51:50 +00:00
#[doc(hidden)]
2017-08-03 18:58:44 +00:00
pub mod util;
pub mod version;