bad5d0ace6
Otherwise trying to embed the GUI in REAPER will panic. https://github.com/RustAudio/baseview/pull/113
49 lines
1.4 KiB
TOML
49 lines
1.4 KiB
TOML
[package]
|
|
name = "nih_plug"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
authors = ["Robbert van der Helm <mail@robbertvanderhelm.nl>"]
|
|
license = "GPL-3.0-or-later"
|
|
|
|
keywords = ["audio", "plugin", "vst", "vst3"]
|
|
description = "A simple but modern API-agnostic audio plugin framework"
|
|
repository = "https://github.com/robbert-vdh/nih-plugs"
|
|
|
|
[workspace]
|
|
members = [
|
|
"nih_plug_derive",
|
|
"nih_plug_egui",
|
|
"xtask",
|
|
|
|
"plugins/examples/gain",
|
|
"plugins/examples/gain-gui",
|
|
"plugins/examples/sine",
|
|
]
|
|
|
|
[dependencies]
|
|
nih_plug_derive = { path = "nih_plug_derive" }
|
|
|
|
atomic_float = "0.1"
|
|
cfg-if = "1.0"
|
|
crossbeam = "0.8"
|
|
lazy_static = "1.4"
|
|
parking_lot = "0.12"
|
|
# 0.4.x doesn't work with baseview
|
|
raw-window-handle = "0.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
vst3-sys = { git = "https://github.com/robbert-vdh/vst3-sys.git", branch = "fix/atomic-reference-count" }
|
|
widestring = "1.0.0-beta.1"
|
|
|
|
assert_no_alloc = { version = "1.1", optional = true }
|
|
|
|
[features]
|
|
default = []
|
|
# Enabling this feature will cause the plugin to terminate when allocations
|
|
# occur in the processing function while compiling in debug mode.
|
|
assert_process_allocs = ["assert_no_alloc"]
|
|
|
|
# Upstream baseview doesn't work in REAPER because of mismatching visuals
|
|
[patch."https://github.com/RustAudio/baseview.git"]
|
|
baseview = { git = "https://github.com/prokopyl/baseview.git", rev = "6f7068e4f3391b7f977f8595619d4fe2c1dfd84f" }
|