maolan 0.1.0

Rust DAW application for recording, editing, routing, automation, export, and plugin hosting
1
2
3
4
5
6
7
8
pub mod clap;
#[cfg(all(unix, not(target_os = "macos")))]
pub mod lv2;
pub mod vst3;
#[cfg(target_os = "windows")]
pub mod win32;
#[cfg(all(unix, not(target_os = "macos")))]
pub mod x11;