1
0
Fork 0
mirror of https://github.com/librespot-org/librespot.git synced 2025-10-06 03:50:06 +02:00
librespot/src/lib.in.rs
Paul Lietar 9274a6bfb3 Refactor audio output to make it more modular.
This makes the player less hard coded to portaudio, and easier to
experiment with different backends.
2016-03-14 00:49:21 +00:00

18 lines
318 B
Rust

#[macro_use] pub mod util;
mod audio_decrypt;
mod audio_file;
mod audio_key;
pub mod audio_sink;
pub mod authentication;
mod connection;
mod diffie_hellman;
pub mod discovery;
pub mod mercury;
pub mod metadata;
pub mod player;
pub mod session;
pub mod spirc;
pub mod link;
mod stream;
pub mod apresolve;
mod zeroconf;