synthie 0.4.0

Chiptune-focused synthesizer engine: dual OSC, ring mod, filters, envelopes, LFO, arpeggiator, and FX (reverb, delay, chorus, bitcrusher)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Audio DSP modules and (when the `io` feature is enabled) the CPAL stream setup.

#[cfg(feature = "arp")]
pub mod arp;
pub mod chorus;
pub mod crusher;
pub mod delay;
pub mod drums;
#[cfg(feature = "io")]
pub mod engine;
pub mod env;
pub mod filter;
pub mod fx;
pub mod osc;
pub mod processor;
pub mod voice;