1
0
Fork 0
nih-plug/Cargo.toml

73 lines
1.7 KiB
TOML
Raw Normal View History

[package]
name = "nih_plug"
version = "0.0.0"
edition = "2021"
authors = ["Robbert van der Helm <mail@robbertvanderhelm.nl>"]
2022-02-12 16:03:28 +01:00
license = "ISC"
keywords = ["audio", "plugin", "vst", "vst3"]
description = "A simple but modern API-agnostic audio plugin framework"
2022-03-07 20:03:05 +01:00
repository = "https://github.com/robbert-vdh/nih-plug"
2022-01-25 12:23:19 +01:00
[workspace]
members = [
"nih_plug_derive",
2022-02-06 00:22:33 +01:00
"nih_plug_egui",
2022-03-12 22:10:14 +01:00
"nih_plug_iced",
"nih_plug_xtask",
"cargo_nih_plug",
"xtask",
"plugins/examples/gain",
"plugins/examples/gain-gui",
"plugins/examples/sine",
"plugins/examples/stft",
2022-03-08 17:41:23 +01:00
"plugins/crisp",
"plugins/diopser",
"plugins/puberty_simulator",
]
[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"]
# Add adapters to the Buffer object for reading the channel data to and from
# `std::simd` vectors. Requires a nightly compiler.
simd = []
[dependencies]
nih_plug_derive = { path = "nih_plug_derive" }
atomic_float = "0.1"
atomic_refcell = "0.1"
2022-02-03 15:58:00 +01:00
cfg-if = "1.0"
# For CLAP 0.23
clap-sys = { git = "https://github.com/glowcoil/clap-sys" }
2022-02-05 12:46:26 +01:00
crossbeam = "0.8"
lazy_static = "1.4"
parking_lot = "0.12"
raw-window-handle = "0.4"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
vst3-sys = { git = "https://github.com/RustAudio/vst3-sys.git" }
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 }
[target.'cfg(windows)'.dependencies.windows]
version = "0.32"
features = [
"Win32_Foundation",
"Win32_Graphics_Gdi",
"Win32_UI_WindowsAndMessaging",
"Win32_System_LibraryLoader",
"Win32_System_Performance",
]
[profile.release]
2022-03-09 01:16:48 +01:00
lto = "thin"
strip = "symbols"