oxisynth 0.0.5

Rust soundfont synthesizer
Documentation
mod arena;
pub mod chorus;
mod core;
mod error;
mod midi_event;
mod range_check;
pub mod reverb;
pub mod settings;
mod synth;
mod tuning;

pub use crate::core::soundfont::{Preset, SoundFont};
pub use error::OxiError;
pub use midi_event::MidiEvent;
pub use tuning::{Tuning, TuningManager};

pub use crate::arena::TypedIndex;
pub type SoundFontId = TypedIndex<SoundFont>;

pub use settings::*;
pub use synth::*;

#[macro_use]
extern crate lazy_static;