2022-01-26 12:52:57 +01:00
|
|
|
[package]
|
|
|
|
name = "nih_plug"
|
2022-02-05 19:40:42 +01:00
|
|
|
version = "0.0.0"
|
2022-01-26 12:52:57 +01:00
|
|
|
edition = "2021"
|
|
|
|
authors = ["Robbert van der Helm <mail@robbertvanderhelm.nl>"]
|
2022-02-12 16:03:28 +01:00
|
|
|
license = "ISC"
|
2022-01-26 12:52:57 +01:00
|
|
|
|
2022-02-05 19:40:42 +01:00
|
|
|
keywords = ["audio", "plugin", "vst", "vst3"]
|
|
|
|
description = "A simple but modern API-agnostic audio plugin framework"
|
|
|
|
repository = "https://github.com/robbert-vdh/nih-plugs"
|
|
|
|
|
2022-01-25 12:23:19 +01:00
|
|
|
[workspace]
|
2022-02-01 19:39:45 +01:00
|
|
|
members = [
|
|
|
|
"nih_plug_derive",
|
2022-02-06 00:22:33 +01:00
|
|
|
"nih_plug_egui",
|
2022-02-01 19:39:45 +01:00
|
|
|
"xtask",
|
|
|
|
|
2022-02-03 16:57:10 +01:00
|
|
|
"plugins/examples/gain",
|
2022-02-06 13:16:28 +01:00
|
|
|
"plugins/examples/gain-gui",
|
2022-02-03 16:57:10 +01:00
|
|
|
"plugins/examples/sine",
|
2022-02-12 16:27:57 +01:00
|
|
|
|
|
|
|
"plugins/diopser",
|
2022-02-01 19:39:45 +01:00
|
|
|
]
|
2022-01-26 12:52:57 +01:00
|
|
|
|
2022-02-15 18:13:47 +01:00
|
|
|
[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"]
|
2022-03-01 21:39:53 +01:00
|
|
|
# Add adapters to the Buffer object for reading the channel data to and from
|
|
|
|
# `std::simd` vectors. Requires a nightly compiler.
|
|
|
|
simd = []
|
2022-02-15 18:13:47 +01:00
|
|
|
|
2022-01-26 12:52:57 +01:00
|
|
|
[dependencies]
|
|
|
|
nih_plug_derive = { path = "nih_plug_derive" }
|
2022-01-31 19:40:52 +01:00
|
|
|
|
2022-02-06 03:38:59 +01:00
|
|
|
atomic_float = "0.1"
|
2022-03-01 19:52:56 +01:00
|
|
|
atomic_refcell = "0.1"
|
2022-02-03 15:58:00 +01:00
|
|
|
cfg-if = "1.0"
|
2022-02-28 14:45:07 +01:00
|
|
|
# For CLAP 0.18
|
|
|
|
clap-sys = { git = "https://github.com/glowcoil/clap-sys", rev = "3ef7048e1d3b426a7c6b02b5d3ae18f14874d4e5" }
|
2022-02-05 12:46:26 +01:00
|
|
|
crossbeam = "0.8"
|
2022-01-27 00:19:50 +01:00
|
|
|
lazy_static = "1.4"
|
2022-01-31 17:16:27 +01:00
|
|
|
parking_lot = "0.12"
|
2022-02-07 21:58:59 +01:00
|
|
|
raw-window-handle = "0.4"
|
2022-01-29 14:20:14 +01:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2022-02-10 19:59:36 +01:00
|
|
|
# This contains a number of fixes for the reference counting, cross compilation
|
|
|
|
# support, and an incorrect return type
|
2022-01-31 18:53:45 +01:00
|
|
|
vst3-sys = { git = "https://github.com/robbert-vdh/vst3-sys.git", branch = "fix/atomic-reference-count" }
|
2022-01-26 21:02:52 +01:00
|
|
|
widestring = "1.0.0-beta.1"
|
2022-02-03 15:58:00 +01:00
|
|
|
|
|
|
|
assert_no_alloc = { version = "1.1", optional = true }
|
|
|
|
|
2022-02-07 00:33:41 +01:00
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
|
|
|
version = "0.32"
|
|
|
|
features = [
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_Graphics_Gdi",
|
|
|
|
"Win32_UI_WindowsAndMessaging",
|
|
|
|
"Win32_System_LibraryLoader",
|
|
|
|
"Win32_System_Performance",
|
|
|
|
]
|