2022-01-26 22:52:57 +11:00
|
|
|
[package]
|
|
|
|
name = "nih_plug"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
authors = ["Robbert van der Helm <mail@robbertvanderhelm.nl>"]
|
|
|
|
license = "GPL-3.0-or-later"
|
|
|
|
|
2022-01-25 22:23:19 +11:00
|
|
|
[workspace]
|
2022-01-26 22:52:57 +11:00
|
|
|
members = ["nih_plug_derive", "plugins/gain"]
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
nih_plug_derive = { path = "nih_plug_derive" }
|
2022-01-27 10:19:50 +11:00
|
|
|
lazy_static = "1.4"
|
2022-01-27 01:38:43 +11:00
|
|
|
# Upstream currently does not support structs with generics and comments
|
|
|
|
vst3-sys = { git = "https://github.com/robbert-vdh/vst3-sys.git", branch = "fix/vst3-macro-generics" }
|
2022-01-27 07:02:52 +11:00
|
|
|
widestring = "1.0.0-beta.1"
|