2022-07-14 06:27:56 +10:00
|
|
|
[package]
|
|
|
|
name = "spectral_compressor"
|
2023-03-31 21:54:07 +11:00
|
|
|
version = "0.4.3"
|
2022-07-14 06:27:56 +10:00
|
|
|
edition = "2021"
|
|
|
|
authors = ["Robbert van der Helm <mail@robbertvanderhelm.nl>"]
|
|
|
|
license = "GPL-3.0-or-later"
|
2022-11-12 04:07:47 +11:00
|
|
|
homepage = "https://github.com/robbert-vdh/nih-plug/tree/master/plugins/spectral_compressor"
|
2022-07-14 06:27:56 +10:00
|
|
|
|
|
|
|
[lib]
|
2023-12-31 03:11:57 +11:00
|
|
|
crate-type = ["cdylib"]
|
2022-07-14 06:27:56 +10:00
|
|
|
|
|
|
|
[dependencies]
|
2023-03-22 23:54:51 +11:00
|
|
|
nih_plug = { path = "../../", features = ["assert_process_allocs"] }
|
2022-07-14 06:27:56 +10:00
|
|
|
nih_plug_vizia = { path = "../../nih_plug_vizia" }
|
2022-07-14 23:23:43 +10:00
|
|
|
|
|
|
|
realfft = "3.0"
|
2023-01-16 11:18:32 +11:00
|
|
|
|
|
|
|
# For the GUI
|
2023-03-21 00:56:17 +11:00
|
|
|
atomic_float = "0.1"
|
2023-02-27 03:50:49 +11:00
|
|
|
crossbeam = "0.8"
|
2023-01-16 11:18:32 +11:00
|
|
|
open = "3.0"
|
2023-02-27 03:50:49 +11:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
2023-03-20 00:42:04 +11:00
|
|
|
triple_buffer = "6.2"
|