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
12
13
14
use serde::{Deserialize, Serialize};
use typeshare::typeshare;

#[typeshare]
#[derive(Debug, PartialEq, Clone, Serialize, Deserialize)]
pub enum Base {
    A,
    B,
    C,
    D,
    E,
    F,
    G,
}