1
0
Fork 0

Fix typos in Cargo.toml

This commit is contained in:
Robbert van der Helm 2022-07-08 02:18:24 +02:00
parent 8915723457
commit 9a09e8ce32

View file

@ -41,18 +41,18 @@ members = [
default = ["vst3"]
# Enabling this feature will cause the plugin to terminate when allocations
# occur in the processing function while compiling in debug mode. Keep in mind
# that most panic handlers will also allocate, so temporarily disabling this
# occur in the processing function during debug builds. Keep in mind that panics
# may also allocate if they use string formatting, so temporarily disabling this
# feature may be necessary when debugging panics in DSP code.
assert_process_allocs = ["dep:assert_no_alloc"]
# Enables an export target for standalone binaries through the
# `nih_export_standalone()` function. Disabled by default, as this requires
# `nih_export_standalone()` function. Disabled by default as this requires
# building additional dependencies for audio and MIDI handling.
standalone = ["dep:anyhow", "dep:baseview", "dep:clap", "dep:jack"]
# Enables the `nih_export_vst3!()` macro. Enabled by default. This feature
# exists mostly for GPL-compliance reasons, since even if you don't use the VST3
# wrapper you might otherwise still include a couple (unused) symbols from the
# `vst3-sys` create.
# `vst3-sys` crate.
vst3 = ["dep:vst3-sys"]
# Add adapters to the Buffer object for reading the channel data to and from
# `std::simd` vectors. Requires a nightly compiler.