xsynth_core/
lib.rs

1#![allow(clippy::let_and_return)]
2#![allow(non_local_definitions)]
3
4pub mod buffered_renderer;
5
6pub mod channel;
7
8pub mod voice;
9
10mod audio_pipe;
11pub use audio_pipe::*;
12
13mod audio_stream;
14pub use audio_stream::*;
15
16pub mod soundfont;
17
18pub mod effects;
19
20pub mod helpers;
21
22pub mod channel_group;