catalina 0.0.1

Embedded Rust ecosystem for audio processing and music
Documentation
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(all(not(feature = "std"), feature = "alloc"))]
extern crate alloc;

/// Re-export the engine crate under the root crate.
#[cfg(feature = "engine")]
pub mod engine {
    pub use catalina_engine::*;
}

/// Re-export the BSP crate under the root crate.
#[cfg(feature = "bsp")]
pub mod bsp {
    pub use catalina_bsp::*;
}

/// Re-export the BSP crate under the root crate.
#[cfg(feature = "instruments")]
pub mod instruments {
    pub use catalina_instruments::*;
}