chord-progression-parser 0.7.0

a converter from chord progression strings to AST
Documentation
1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};
use typeshare::typeshare;

#[typeshare]
#[derive(Debug, PartialEq, Clone, Deserialize, Serialize)]
#[serde(tag = "type", content = "value", rename_all = "camelCase")]
pub enum SectionMeta {
    Section(String),
    Repeat(u32),
    // or more
}