eqtune 0.3.1

A lightweight, system-wide audio equalizer for macOS, built on Core Audio process taps.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! eqtune — system-wide audio EQ for macOS.
//!
//! Library root. The portable Rust modules own config, IPC, daemon state, DSP, launchd
//! integration, and safe wrappers around the Objective-C Core Audio shim.
//!
//! For the design notes, see [`architecture_zh`].

pub mod architecture_zh;
pub mod config;
pub mod daemon;
pub mod dsp;
pub mod ipc;
pub mod launchd;
pub mod sys;