HexoDSP/Cargo.toml

36 lines
1 KiB
TOML
Raw Normal View History

2021-05-18 01:59:00 +00:00
[package]
2021-05-19 01:59:53 +00:00
name = "hexodsp"
2022-07-04 03:14:53 +00:00
version = "0.2.0"
authors = ["Weird Constructor <weirdconstructor@m8geil.de>"]
2022-07-05 18:03:46 +00:00
license = "GPL-3.0-or-later"
2022-07-04 03:14:53 +00:00
edition = "2021"
2021-05-18 03:02:58 +00:00
description = "Comprehensive DSP graph and synthesis library for developing a modular synthesizer in Rust, such as HexoSynth."
keywords = ["audio", "music", "real-time", "synthesis", "synthesizer", "dsp", "sound"]
categories = ["multimedia::audio", "multimedia", "algorithms", "mathematics"]
2022-07-29 19:10:51 +00:00
[features]
2022-07-30 21:11:33 +00:00
default = [ "synfx-dsp-jit" ]
2021-05-18 01:59:00 +00:00
[dependencies]
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
ringbuf = "0.2.2"
2021-05-18 01:59:00 +00:00
triple_buffer = "5.0.6"
lazy_static = "1.4.0"
hound = "3.4.0"
2022-07-30 21:11:33 +00:00
synfx-dsp-jit = { path = "../synfx-dsp-jit", optional = true }
synfx-dsp = "0.5.1"
#synfx-dsp = { git = "https://github.com/WeirdConstructor/synfx-dsp" }
2021-05-18 01:59:00 +00:00
[dev-dependencies]
num-complex = "0.2"
2021-06-21 17:58:04 +00:00
jack = "0.6.6"
rustfft = "6.0.0"
2022-07-09 18:36:56 +00:00
cpal = "0.13.5"
anyhow = "1.0.58"
2021-05-18 01:59:00 +00:00
[lib]
path = "src/lib.rs"
name = "hexodsp"
2021-05-18 01:59:00 +00:00
crate-type = ["lib"]