lib.rs

341 B · rust · 13 lines

1#![doc = include_str!("../README.md")]2#![deny(missing_docs)]34/// Notes, waves and the synth's constants.5pub mod audio;6/// The composer: voices walking chord pools into frames of midi notes.7pub mod music;89mod wav;1011pub use audio::{Note, Timbre, Wave};12pub use music::{compose, mix, track, ChordType, Movement, Voice};13pub use wav::wav;