kopuz-player 0.8.1

A modern, lightweight music player built with Rust and Dioxus.
Documentation
1
2
3
4
5
6
7
8
9
10
//! Audio playback engine for Kopuz: player state machine, decoder, equalizer,
//! system media controls, and audio output via cpal / symphonia.

#[cfg(not(target_arch = "wasm32"))]
pub mod decoder;
#[cfg(not(target_arch = "wasm32"))]
pub mod eq;
pub mod player;
#[cfg(not(target_arch = "wasm32"))]
pub mod systemint;