musicxml 1.1.2

MusicXML parsing, manipulation, and export library
Documentation
1
2
3
4
5
6
7
use musicxml::*;

fn main() {
  // Read a MusicXML file of one score type as a different score type
  let score = read_score_timewise("./musicxml/tests/Grande Valse Brillante.musicxml");
  println! {"{score:?}"};
}