[[bench]]
harness = false
name = "rt_bench"
path = "benches/rt_bench.rs"
[dependencies.lazy_static]
version = "1.4"
[dependencies.rtrb]
version = "0.3"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.hound]
version = "3.5.1"
[dev-dependencies.proptest]
version = "1.0"
[[example]]
name = "am_synth"
path = "examples/am_synth.rs"
[[example]]
name = "basic_sine"
path = "examples/basic_sine.rs"
[[example]]
name = "filter_chain"
path = "examples/filter_chain.rs"
[[example]]
name = "gain_chain"
path = "examples/gain_chain.rs"
[[example]]
name = "mixer"
path = "examples/mixer.rs"
[[example]]
name = "offline_render"
path = "examples/offline_render.rs"
[[example]]
name = "proof_it_works"
path = "examples/proof_it_works.rs"
[[example]]
name = "sequencer"
path = "examples/sequencer.rs"
[features]
default = ["ppt"]
ppt = []
[lib]
name = "auxide"
path = "src/lib.rs"
[package]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["multimedia::audio", "concurrency"]
description = "Real-time-safe, deterministic audio graph kernel"
edition = "2021"
keywords = ["audio", "graph", "real-time", "dsp", "kernel"]
license = "MIT OR Apache-2.0"
name = "auxide"
readme = "README.md"
repository = "https://github.com/Michael-A-Kuykendall/auxide"
version = "0.3.1"
[[test]]
name = "dsp_gain_mix"
path = "tests/dsp_gain_mix.rs"
[[test]]
name = "dsp_osc"
path = "tests/dsp_osc.rs"
[[test]]
name = "dsp_silence"
path = "tests/dsp_silence.rs"
[[test]]
name = "graph_invariants"
path = "tests/graph_invariants.rs"
[[test]]
name = "graph_props"
path = "tests/graph_props.rs"
[[test]]
name = "offline_render"
path = "tests/offline_render.rs"
[[test]]
name = "plan_determinism"
path = "tests/plan_determinism.rs"
[[test]]
name = "plan_isolation"
path = "tests/plan_isolation.rs"
[[test]]
name = "plan_topology"
path = "tests/plan_topology.rs"
[[test]]
name = "rt_alloc"
path = "tests/rt_alloc.rs"
[[test]]
name = "rt_no_panic"
path = "tests/rt_no_panic.rs"
[[test]]
name = "rt_no_ppt"
path = "tests/rt_no_ppt.rs"