meowsic 0.2.0

notes to chord names :3
Documentation
  • Coverage
  • 50%
    1 out of 2 items documented1 out of 2 items with examples
  • Size
  • Source code size: 16.24 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 739.47 kB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 11s Average build duration of successful builds.
  • all releases: 12s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • DVDTSB/meowsic
    4 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • DVDTSB

meowsic

notes -> chord name in rust (no-std friendly too) :)

use

use meowsic::get_chords;

fn main() {
    println!("{:?}", get_chords(&vec![60, 64, 67, 71]));
    // ["Cmaj7", "Em(b6)", "Em/C", "G6/11", "G6/C", "Bsus4(b6,b9)", "Bsus4(b6)/C"]
}