1
0
Fork 0
nih-plug/src/lib.rs

19 lines
388 B
Rust
Raw Normal View History

#![cfg_attr(feature = "simd", feature(portable_simd))]
#[macro_use]
2022-01-26 11:26:30 +01:00
pub mod debug;
2022-02-02 15:12:33 +01:00
/// Everything you'd need to use NIH-plug. Import this with `use nih_plug::prelude::*;`.
pub mod prelude;
// These modules have also been re-exported in the prelude.
pub mod formatters;
pub mod util;
pub mod buffer;
pub mod context;
pub mod event_loop;
2022-02-02 15:12:33 +01:00
pub mod param;
pub mod plugin;
pub mod wrapper;