mtrack 0.12.0

A multitrack audio and MIDI player for live performances.
Documentation
// Copyright (C) 2026 Michael Wilson <mike@mdwn.dev>
//
// This program is free software: you can redistribute it and/or modify it under
// the terms of the GNU General Public License as published by the Free Software
// Foundation, version 3.
//
// This program is distributed in the hope that it will be useful, but WITHOUT
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
// FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
//
// You should have received a copy of the GNU General Public License along with
// this program. If not, see <https://www.gnu.org/licenses/>.
//

mod effect_parse;
mod error;
pub(crate) mod fixture_venue; // Make accessible for tests
mod grammar;
mod show;
mod tempo_parse;
mod types;
pub(crate) mod utils; // Make utils accessible for tests

#[cfg(test)]
mod tests;

// Re-export public items
pub use fixture_venue::{parse_fixture_types, parse_venues};
pub use show::parse_light_shows;
pub use types::{Cue, Effect, LayerCommand, LayerCommandType, LightShow};