#![forbid(unsafe_code)]
#![deny(missing_docs)]
#![allow(deprecated)]
mod export;
mod import;
mod model;
mod runtime;
mod spell;
pub use export::{
export_counterpoint_lilypond, export_lilypond, export_lilypond_report, export_melody_lilypond,
export_progression_lilypond,
};
pub use import::{import_lilypond, import_lilypond_report};
pub use model::{NotationCodec, NotationError, NotationReport};
pub use runtime::*;
pub static RECIPES: sim_cookbook::EmbeddedDir =
include!(concat!(env!("OUT_DIR"), "/cookbook_recipes.rs"));
#[cfg(test)]
mod tests;