Skip to main content

synth/
lib.rs

1//! Core library for the `synth` crate.
2//!
3//! Exposes DSP modules, core parameter types, and the built-in preset bank.
4//! Terminal UI, runtime bootstrap, and filesystem persistence are owned by the
5//! binary crate and are not part of this public API.
6//!
7//! Fuzz harnesses and other non-TUI consumers can import [`audio`] and
8//! [`params`] directly without pulling in any terminal dependencies.
9
10pub mod audio;
11pub mod params;
12pub mod presets;