Use a vst3-sys fork with support for generics
This commit is contained in:
parent
04ad429e57
commit
1a619c474b
8
Cargo.lock
generated
8
Cargo.lock
generated
|
@ -63,7 +63,7 @@ checksum = "8ccb82d61f80a663efe1f787a51b16b5a51e3314d6ac365b08639f52387b33f3"
|
|||
[[package]]
|
||||
name = "vst3-com"
|
||||
version = "0.1.0"
|
||||
source = "git+https://github.com/RustAudio/vst3-sys.git#6ab2b43928588cdedcf499eecfc5a022e007dd76"
|
||||
source = "git+https://github.com/robbert-vdh/vst3-sys.git?branch=fix/vst3-macro-generics#5acdcd34236f81bd3c87411094f9ee3bcc5f1829"
|
||||
dependencies = [
|
||||
"vst3-com-macros",
|
||||
]
|
||||
|
@ -71,7 +71,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "vst3-com-macros"
|
||||
version = "0.2.0"
|
||||
source = "git+https://github.com/RustAudio/vst3-sys.git#6ab2b43928588cdedcf499eecfc5a022e007dd76"
|
||||
source = "git+https://github.com/robbert-vdh/vst3-sys.git?branch=fix/vst3-macro-generics#5acdcd34236f81bd3c87411094f9ee3bcc5f1829"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
@ -82,7 +82,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "vst3-com-macros-support"
|
||||
version = "0.2.0"
|
||||
source = "git+https://github.com/RustAudio/vst3-sys.git#6ab2b43928588cdedcf499eecfc5a022e007dd76"
|
||||
source = "git+https://github.com/robbert-vdh/vst3-sys.git?branch=fix/vst3-macro-generics#5acdcd34236f81bd3c87411094f9ee3bcc5f1829"
|
||||
dependencies = [
|
||||
"proc-macro2",
|
||||
"quote",
|
||||
|
@ -92,7 +92,7 @@ dependencies = [
|
|||
[[package]]
|
||||
name = "vst3-sys"
|
||||
version = "0.1.0"
|
||||
source = "git+https://github.com/RustAudio/vst3-sys.git#6ab2b43928588cdedcf499eecfc5a022e007dd76"
|
||||
source = "git+https://github.com/robbert-vdh/vst3-sys.git?branch=fix/vst3-macro-generics#5acdcd34236f81bd3c87411094f9ee3bcc5f1829"
|
||||
dependencies = [
|
||||
"vst3-com",
|
||||
]
|
||||
|
|
|
@ -10,4 +10,5 @@ members = ["nih_plug_derive", "plugins/gain"]
|
|||
|
||||
[dependencies]
|
||||
nih_plug_derive = { path = "nih_plug_derive" }
|
||||
vst3-sys = { git = "https://github.com/RustAudio/vst3-sys.git" }
|
||||
# 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" }
|
||||
|
|
Loading…
Reference in a new issue