tune-cli 0.28.0

Explore musical tunings and create synthesizer tuning files for microtonal scales.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Code to be shared with other CLIs. At the moment, this module is not intended to become a stable API.

pub mod error {
    pub use crate::error::*;
}
pub mod midi {
    pub use crate::midi::*;
}
pub mod portable {
    pub use crate::portable::*;
}
pub mod scala {
    pub use crate::scala::*;
}