2021-05-18 01:59:00 +00:00
|
|
|
[package]
|
2021-05-19 01:59:53 +00:00
|
|
|
name = "hexodsp"
|
2021-05-18 03:11:19 +00:00
|
|
|
version = "0.1.0"
|
|
|
|
authors = ["Weird Constructor <weirdconstructor@m8geil.de>"]
|
|
|
|
license = "AGPL-3.0-or-later"
|
|
|
|
edition = "2018"
|
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."
|
2021-05-18 03:11:19 +00:00
|
|
|
keywords = ["audio", "music", "real-time", "synthesis", "synthesizer", "dsp", "sound"]
|
|
|
|
categories = ["multimedia::audio", "multimedia", "algorithms", "mathematics"]
|
|
|
|
|
|
|
|
#[features]
|
|
|
|
#default = [ "hexotk" ]
|
2021-05-18 01:59:00 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2021-05-18 03:11:19 +00:00
|
|
|
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"
|
2021-05-29 17:28:15 +00:00
|
|
|
#hexotk = { optional = true, git = "https://github.com/WeirdConstructor/HexoTK.git" }
|
2021-05-29 19:00:45 +00:00
|
|
|
#hexotk = { optional = true, path = "../hexotk" }
|
2021-05-18 19:20:55 +00:00
|
|
|
hound = "3.4.0"
|
2021-05-18 01:59:00 +00:00
|
|
|
|
|
|
|
[dev-dependencies]
|
|
|
|
microfft = "0.3.1"
|
|
|
|
num-complex = "0.2"
|
2021-06-21 17:58:04 +00:00
|
|
|
jack = "0.6.6"
|
2021-07-12 04:23:45 +00:00
|
|
|
rustfft = "6.0.0"
|
2021-05-18 01:59:00 +00:00
|
|
|
|
|
|
|
[lib]
|
2021-05-18 17:03:15 +00:00
|
|
|
path = "src/lib.rs"
|
2021-05-18 03:11:19 +00:00
|
|
|
name = "hexodsp"
|
2021-05-18 01:59:00 +00:00
|
|
|
crate-type = ["lib"]
|