1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
//! # quartic
//!
//! A crate providing a number of core music primitives and construction tools.
//!
//! The `Chord` module contains a performant representation of tertian chords
//! and provides functions for constructing and determining their constituent
//! notes.

#[macro_use]
extern crate combine;

pub mod chord;
mod parser;