[package]
edition = "2021"
name = "xsynth-core"
version = "0.4.0"
authors = [
"Arduano",
"MBMS",
"Kaydax",
"Khangaroo",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A fast Rust-based SoundFont synthesizer designed for high voice counts and low latency."
homepage = "https://github.com/BlackMIDIDevs/xsynth"
readme = "README.md"
keywords = [
"midi",
"synthesizer",
"soundfont",
]
categories = ["multimedia::audio"]
license = "LGPL-3.0"
repository = "https://github.com/BlackMIDIDevs/xsynth"
[features]
serde = ["dep:serde"]
[lib]
name = "xsynth_core"
path = "src/lib.rs"
[[example]]
name = "core_benchmark"
path = "examples/core_benchmark.rs"
[[example]]
name = "core_samples_per_second"
path = "examples/core_samples_per_second.rs"
[[bench]]
name = "render"
path = "benches/render.rs"
harness = false
[[bench]]
name = "send_events"
path = "benches/send_events.rs"
harness = false
[dependencies.atomic_refcell]
version = "0.1.13"
[dependencies.biquad]
version = "0.4.2"
[dependencies.bytemuck]
version = "1.16.3"
[dependencies.crossbeam-channel]
version = "0.5.13"
[dependencies.lazy_static]
version = "1.5.0"
[dependencies.proc-macro2]
version = "1.0.86"
[dependencies.rayon]
version = "1.10.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
optional = true
[dependencies.simdeez]
version = "3.0.1"
[dependencies.spin_sleep]
version = "1.2.1"
[dependencies.symphonia]
version = "0.5.4"
[dependencies.thiserror]
version = "1.0.63"
[dependencies.to_vec]
version = "0.1.0"
[dependencies.xsynth-soundfonts]
version = "=0.4.0"
[dev-dependencies.criterion]
version = "0.5.1"
[dev-dependencies.midi-toolkit-rs]
version = "0.1.0"
[dev-dependencies.rand]
version = "0.8.5"