2022-01-26 22:52:57 +11:00
|
|
|
[package]
|
|
|
|
name = "nih_plug"
|
2022-02-06 05:40:42 +11:00
|
|
|
version = "0.0.0"
|
2022-01-26 22:52:57 +11:00
|
|
|
edition = "2021"
|
|
|
|
authors = ["Robbert van der Helm <mail@robbertvanderhelm.nl>"]
|
2022-02-13 02:03:28 +11:00
|
|
|
license = "ISC"
|
2022-01-26 22:52:57 +11:00
|
|
|
|
2022-02-06 05:40:42 +11:00
|
|
|
keywords = ["audio", "plugin", "vst", "vst3"]
|
|
|
|
description = "A simple but modern API-agnostic audio plugin framework"
|
2022-03-08 06:03:05 +11:00
|
|
|
repository = "https://github.com/robbert-vdh/nih-plug"
|
2022-02-06 05:40:42 +11:00
|
|
|
|
2022-01-25 22:23:19 +11:00
|
|
|
[workspace]
|
2022-02-02 05:39:45 +11:00
|
|
|
members = [
|
|
|
|
"nih_plug_derive",
|
2022-02-06 10:22:33 +11:00
|
|
|
"nih_plug_egui",
|
2022-03-13 08:10:14 +11:00
|
|
|
"nih_plug_iced",
|
2022-03-02 20:01:48 +11:00
|
|
|
"nih_plug_xtask",
|
2022-03-02 20:27:02 +11:00
|
|
|
|
|
|
|
"cargo_nih_plug",
|
2022-02-02 05:39:45 +11:00
|
|
|
"xtask",
|
|
|
|
|
2022-02-04 02:57:10 +11:00
|
|
|
"plugins/examples/gain",
|
2022-02-06 23:16:28 +11:00
|
|
|
"plugins/examples/gain-gui",
|
2022-02-04 02:57:10 +11:00
|
|
|
"plugins/examples/sine",
|
2022-03-06 12:07:53 +11:00
|
|
|
"plugins/examples/stft",
|
2022-02-13 02:27:57 +11:00
|
|
|
|
2022-03-09 03:41:23 +11:00
|
|
|
"plugins/crisp",
|
2022-02-13 02:27:57 +11:00
|
|
|
"plugins/diopser",
|
2022-03-08 05:51:38 +11:00
|
|
|
"plugins/puberty_simulator",
|
2022-02-02 05:39:45 +11:00
|
|
|
]
|
2022-01-26 22:52:57 +11:00
|
|
|
|
2022-02-16 04:13:47 +11: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-02 07:39:53 +11: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-16 04:13:47 +11:00
|
|
|
|
2022-01-26 22:52:57 +11:00
|
|
|
[dependencies]
|
|
|
|
nih_plug_derive = { path = "nih_plug_derive" }
|
2022-02-01 05:40:52 +11:00
|
|
|
|
2022-02-06 13:38:59 +11:00
|
|
|
atomic_float = "0.1"
|
2022-03-02 05:52:56 +11:00
|
|
|
atomic_refcell = "0.1"
|
2022-02-04 01:58:00 +11:00
|
|
|
cfg-if = "1.0"
|
2022-03-09 10:27:44 +11:00
|
|
|
# For CLAP 0.21
|
2022-03-08 10:21:51 +11:00
|
|
|
clap-sys = { git = "https://github.com/robbert-vdh/clap-sys", branch = "update/clap-0.20" }
|
2022-02-05 22:46:26 +11:00
|
|
|
crossbeam = "0.8"
|
2022-01-27 10:19:50 +11:00
|
|
|
lazy_static = "1.4"
|
2022-02-01 03:16:27 +11:00
|
|
|
parking_lot = "0.12"
|
2022-02-08 07:58:59 +11:00
|
|
|
raw-window-handle = "0.4"
|
2022-01-30 00:20:14 +11:00
|
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
|
|
serde_json = "1.0"
|
2022-03-02 20:36:38 +11:00
|
|
|
vst3-sys = { git = "https://github.com/RustAudio/vst3-sys.git" }
|
2022-01-27 07:02:52 +11:00
|
|
|
widestring = "1.0.0-beta.1"
|
2022-02-04 01:58:00 +11:00
|
|
|
|
|
|
|
assert_no_alloc = { version = "1.1", optional = true }
|
|
|
|
|
2022-02-07 10:33:41 +11:00
|
|
|
[target.'cfg(windows)'.dependencies.windows]
|
|
|
|
version = "0.32"
|
|
|
|
features = [
|
|
|
|
"Win32_Foundation",
|
|
|
|
"Win32_Graphics_Gdi",
|
|
|
|
"Win32_UI_WindowsAndMessaging",
|
|
|
|
"Win32_System_LibraryLoader",
|
|
|
|
"Win32_System_Performance",
|
|
|
|
]
|
2022-03-09 11:08:50 +11:00
|
|
|
|
|
|
|
[profile.release]
|
2022-03-09 11:16:48 +11:00
|
|
|
lto = "thin"
|
2022-03-09 11:08:50 +11:00
|
|
|
strip = "symbols"
|