eqtune 0.1.0

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
//! eqtune — system-wide audio EQ for macOS.
//!
//! Library root. The Core Audio capture/replay layer (process taps) will live in the
//! `daemon` module; the modules here are the portable, unit-testable core.

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