std_mel/
lib.rs

1#![cfg_attr(docsrs, feature(doc_cfg))]
2#![doc = include_str!("../README.md")]
3
4#[cfg(any(
5    all(feature = "real", feature = "mock"),
6    not(any(feature = "real", feature = "mock"))
7))]
8compile_error!("One of the two features 'real' or 'mock' must be enabled");
9
10use melodium_macro::mel_package;
11
12pub mod conv;
13pub mod data;
14pub mod engine;
15pub mod flow;
16pub mod ops;
17pub mod text;
18pub mod types;
19
20mel_package!();