proteus_lib/lib.rs
1//! # Proteus Audio Library
2//!
3//! This library provides the core audio playback and processing functionalities for the Proteus audio player.
4//! It includes modules for audio playback, effects, metadata handling, and more.
5
6mod buffer;
7pub mod effects;
8pub mod info;
9pub mod peaks;
10pub mod player;
11mod player_engine;
12pub mod prot;
13pub mod reporter;
14pub mod test_data;
15pub mod timer;
16mod tools;
17mod track;