klingt 0.3.3

Lock-free audio graph library with message-passing parameter control
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Audio sink nodes (outputs with no audio outputs)

mod rtrb_sink;

#[cfg(feature = "cpal_sink")]
mod cpal_sink;

pub use rtrb_sink::RtrbSink;

#[cfg(feature = "cpal_sink")]
pub use cpal_sink::CpalSink;