nice_plug_core/lib.rs
1#![cfg_attr(feature = "simd", feature(portable_simd))]
2#![allow(clippy::type_complexity)]
3
4pub mod audio_setup;
5pub mod buffer;
6pub mod context;
7pub mod editor;
8pub mod formatters;
9pub mod midi;
10pub mod params;
11pub mod plugin;
12pub mod util;
13
14// These macros are also in the crate root and in the prelude, but having the module itself be pub
15// as well makes it easy to import _just_ the macros without using `#[macro_use] extern crate nice-plug-core;`
16#[macro_use]
17pub mod debug;
18
19/// A re-export of the `log` crate for use in the debug macros. This should not be used directly.
20pub use log;