mirror of
https://github.com/robbert-vdh/nih-plug.git
synced 2026-07-01 02:36:54 +00:00
Add audio input to the CPAL standalone backend
This commit is contained in:
@@ -49,7 +49,7 @@ 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
|
||||
# building additional dependencies for audio and MIDI handling.
|
||||
standalone = ["dep:baseview", "dep:clap", "dep:cpal", "dep:jack"]
|
||||
standalone = ["dep:baseview", "dep:clap", "dep:cpal", "dep:jack", "dep:rtrb"]
|
||||
# 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
|
||||
@@ -100,6 +100,7 @@ clap = { version = "3.2", features = ["derive"], optional = true }
|
||||
cpal = { version = "0.13.5", optional = true }
|
||||
# The current upstream jack panics when it can't load the JACK library, which breaks the backend fallback
|
||||
jack = { git = "https://github.com/robbert-vdh/rust-jack.git", branch = "feature/handle-library-failure", optional = true }
|
||||
rtrb = { version = "0.2.2", optional = true }
|
||||
|
||||
# Used for the `vst3` feature
|
||||
vst3-sys = { git = "https://github.com/robbert-vdh/vst3-sys.git", branch = "fix/note-off-event", optional = true }
|
||||
|
||||
Reference in New Issue
Block a user