3f6f472a34
Since this seems to be the way forward and they encourage using the feature flag instead of the using it as a separate crate.
18 lines
366 B
TOML
18 lines
366 B
TOML
[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"]
|
|
|
|
[features]
|
|
default = ["simd"]
|
|
# Make it go fast, vroom. Requires a nightly compiler.
|
|
simd = []
|
|
|
|
[dependencies]
|
|
nih_plug = { path = "../../", features = ["assert_process_allocs"] }
|