2022-05-29 21:42:45 +10:00
|
|
|
[package]
|
|
|
|
name = "crossover"
|
|
|
|
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-05-29 22:54:28 +10:00
|
|
|
[features]
|
|
|
|
default = ["simd"]
|
|
|
|
# Make it go fast, vroom. Requires a nightly compiler. Non-SIMD builds are
|
|
|
|
# currently unsupported.
|
|
|
|
simd = ["nih_plug/simd"]
|
|
|
|
|
2022-05-29 21:42:45 +10:00
|
|
|
[dependencies]
|
|
|
|
nih_plug = { path = "../../", features = ["assert_process_allocs"] }
|