sim_lib_music_notation/
lib.rs1#![forbid(unsafe_code)]
2#![deny(missing_docs)]
3#![allow(deprecated)]
12
13mod export;
14mod import;
15mod model;
16mod runtime;
17mod spell;
18
19pub use export::{
20 export_counterpoint_lilypond, export_lilypond, export_lilypond_report, export_melody_lilypond,
21 export_progression_lilypond,
22};
23pub use import::{import_lilypond, import_lilypond_report};
24pub use model::{NotationCodec, NotationError, NotationReport};
25pub use runtime::*;
26
27pub static RECIPES: sim_cookbook::EmbeddedDir =
29 include!(concat!(env!("OUT_DIR"), "/cookbook_recipes.rs"));
30
31#[cfg(test)]
32mod tests;