1#![deny(missing_docs)] 2//! Types and helpers for building MIDI-2 capable software in Rust 3#![cfg_attr(feature = "no-std", no_std)] 4pub mod ci; 5pub mod codec; 6pub mod message; 7pub mod muid; 8pub mod packet; 9pub mod rpn;