1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
//! A MIDI router/processor on Rust
//!
//! RMididings is a partial clone of [mididings] in Rust, allowing one to use
//! a syntax not unlike mididings for MIDI event routing and processing.
//!
//! It is very early in development, take care.
//!
//! [mididings]: http://das.nasophon.de/mididings/
#![macro_use]

pub mod proc;
pub use proc::*;

mod scene;
pub use scene::*;

mod backend;

mod engine;
pub use engine::*;