# 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 = "rstmt" version = "0.0.2" authors = ["Joe McCain III "] build = "build.rs" autobins = false autoexamples = false autotests = false autobenches = false description = "This crate focuses on building a music theory library that can be used to generate music theory data structures and algorithms." homepage = "https://github.com/FL03/rstmt/wiki" readme = "README.md" keywords = ["music"] categories = [] license = "Apache-2.0" repository = "https://github.com/FL03/rstmt.git" [package.metadata.docs.rs] all-features = true rustc-args = [ "--cfg", "docsrs", ] [lib] name = "rstmt" crate-type = [ "cdylib", "rlib", ] path = "src/lib.rs" test = true doctest = false bench = true [[example]] name = "basic" path = "examples/basic.rs" [[example]] name = "triads" path = "examples/triads.rs" required-features = [ "neo", "std", ] [[test]] name = "default" path = "tests/default.rs" [dependencies.rstmt-core] version = "0.0.2" default-features = false [dependencies.rstmt-neo] version = "0.0.2" optional = true default-features = false [dev-dependencies.anyhow] version = "1" [dev-dependencies.num] version = "0.4" [features] alloc = ["rstmt-core/alloc"] default = ["std"] full = [ "default", "neo", "rand", "serde", ] neo = ["dep:rstmt-neo"] rand = [ "rstmt-core/rand", "rstmt-neo?/rand", ] serde = [ "rstmt-core/serde", "rstmt-neo?/serde", ] std = ["rstmt-core/std"]