trem 0.1.0

A mathematical music engine — rational time, xenharmonic pitch, recursive trees, audio graphs
Documentation
# 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 = "trem"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A mathematical music engine — rational time, xenharmonic pitch, recursive trees, audio graphs"
documentation = "https://docs.rs/trem"
readme = "README.md"
keywords = [
    "audio",
    "music",
    "dsp",
    "xenharmonic",
    "sequencer",
]
categories = ["multimedia::audio"]
license = "MIT"
repository = "https://github.com/alkemdev/trem"

[features]
serde = [
    "dep:serde",
    "num-rational/serde",
]

[lib]
name = "trem"
path = "src/lib.rs"

[[example]]
name = "custom_processor"
path = "examples/custom_processor.rs"

[[example]]
name = "euclidean_rhythm"
path = "examples/euclidean_rhythm.rs"

[[example]]
name = "offline_render"
path = "examples/offline_render.rs"

[[example]]
name = "xenharmonic"
path = "examples/xenharmonic.rs"

[[bench]]
name = "core"
path = "benches/core.rs"
harness = false

[[bench]]
name = "dsp"
path = "benches/dsp.rs"
harness = false

[[bench]]
name = "graph"
path = "benches/graph.rs"
harness = false

[dependencies.bitflags]
version = "2"

[dependencies.num-integer]
version = "0.1.46"

[dependencies.num-rational]
version = "0.4.2"

[dependencies.num-traits]
version = "0.2.19"

[dependencies.serde]
version = "1"
features = ["derive"]
optional = true

[dev-dependencies.divan]
version = "0.1.21"