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