2022-02-13 02:27:57 +11:00
|
|
|
[package]
|
|
|
|
name = "diopser"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
authors = ["Robbert van der Helm <mail@robbertvanderhelm.nl>"]
|
|
|
|
license = "GPL-3.0-or-later"
|
|
|
|
|
|
|
|
[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-06 05:39:52 +11:00
|
|
|
nih_plug_egui = { path = "../../nih_plug_egui" }
|