# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "chordparser" version = "2.1.7" build = false exclude = [".DS_Store"] autobins = false autoexamples = false autotests = false autobenches = false description = "A parser library to generate Jazz/Pop/Rock chords from string inputs" readme = "README.md" keywords = [ "music", "music-theory", "chords", "midi", "parser", ] categories = [ "multimedia::audio", "parsing", ] license = "MIT" repository = "https://github.com/PauSala/chordparser" [profile.release] opt-level = 3 lto = true codegen-units = 1 [lib] name = "chordparser" path = "src/lib.rs" [[example]] name = "parse-chord" path = "examples/parse-chord.rs" [[test]] name = "exhaustive" path = "tests/exhaustive.rs" [[test]] name = "should_error" path = "tests/should_error.rs" [[test]] name = "should_normalize_name" path = "tests/should_normalize_name.rs" [[test]] name = "should_parse" path = "tests/should_parse.rs" [[bench]] name = "bench_parser" path = "benches/bench_parser.rs" harness = false [dependencies.regex] version = "1.10.5" [dependencies.serde] version = "1.0.204" features = ["derive"] [dependencies.serde_json] version = "1.0.121" [dev-dependencies.criterion] version = "0.5" features = ["html_reports"] [dev-dependencies.midly] version = "0.5.3" [dev-dependencies.test-case] version = "3.3.1"