1
0
Fork 0
nih-plug/plugins/diopser/Cargo.toml
Robbert van der Helm 3f6f472a34 Use portable_simd from std instead of packed_simd
Since this seems to be the way forward and they encourage using the
feature flag instead of the using it as a separate crate.
2022-03-01 20:59:31 +01:00

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"] }