//! MIDI-to-sound bridging for the SIM music constellation.
//!
//! This crate connects the MIDI surface to the sound layer. The
//! [`MidiToSoundBridge`] consumes MIDI events and produces [`ScheduledTone`]s,
//! resolving programs through a [`TimbreBank`], pitches through a tuning, and
//! polyphony through a [`VoicePool`]. [`BridgeOptions`] and
//! [`BridgeChannelState`] configure and track per-channel behavior, and a
//! runtime surface installs the bridge cards as a SIM lib.
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
/// Cookbook recipes for this lib, embedded at build time.
pub static RECIPES: EmbeddedDir =
include!;