[package]
edition = "2024"
rust-version = "1.85"
name = "fermata"
version = "0.1.0"
authors = ["oxur contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An S-expression DSL for working with MusicXML"
homepage = "https://github.com/oxur/fermata"
documentation = "https://docs.rs/fermata"
readme = "README.md"
keywords = [
"music",
"notation",
"musicxml",
"lisp",
"dsl",
]
categories = [
"compilers",
"parser-implementations",
"multimedia::audio",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/oxur/fermata"
[lib]
name = "fermata"
path = "src/lib.rs"
[[bin]]
name = "fermata"
path = "src/main.rs"
[dependencies.nom]
version = "7"
[dependencies.quick-xml]
version = "0.39"
[dependencies.thiserror]
version = "2"
[dev-dependencies]