2022-02-13 02:27:57 +11:00
|
|
|
[package]
|
|
|
|
name = "diopser"
|
2022-11-30 06:00:21 +11:00
|
|
|
version = "0.4.0"
|
2022-02-13 02:27:57 +11: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/diopser"
|
2022-02-13 02:27:57 +11:00
|
|
|
|
|
|
|
[lib]
|
|
|
|
crate-type = ["cdylib"]
|
|
|
|
|
2022-02-16 04:30:45 +11:00
|
|
|
[features]
|
|
|
|
default = ["simd"]
|
2022-03-04 22:49:36 +11:00
|
|
|
# Make it go fast, vroom. Requires a nightly compiler. Support for the non-SIMD
|
|
|
|
# version has been removed at the moment.
|
2022-03-02 07:40:21 +11:00
|
|
|
simd = ["nih_plug/simd"]
|
2022-02-16 04:30:45 +11:00
|
|
|
|
2022-02-13 02:27:57 +11:00
|
|
|
[dependencies]
|
|
|
|
nih_plug = { path = "../../", features = ["assert_process_allocs"] }
|
2022-03-23 04:32:02 +11:00
|
|
|
nih_plug_vizia = { path = "../../nih_plug_vizia" }
|
2022-03-07 23:57:24 +11:00
|
|
|
|
2022-11-12 07:23:39 +11:00
|
|
|
atomic_float = "0.1"
|
2022-11-30 06:00:21 +11:00
|
|
|
semver = "1.0.14"
|
2022-11-12 07:23:39 +11:00
|
|
|
|
2022-03-07 23:57:24 +11:00
|
|
|
# For the GUI
|
2022-03-29 03:02:26 +11:00
|
|
|
realfft = "3.0"
|
2022-11-12 04:14:01 +11:00
|
|
|
open = "3.0"
|
2022-03-07 23:57:24 +11:00
|
|
|
triple_buffer = "6.0"
|