1
0
Fork 0

Use upstream vst3-sys again

Now that https://github.com/RustAudio/vst3-sys/pull/46 has been merged.
This commit is contained in:
Robbert van der Helm 2022-03-02 10:36:38 +01:00
parent 85ea65c080
commit 9d5de10d16
2 changed files with 7 additions and 9 deletions

12
Cargo.lock generated
View file

@ -728,9 +728,9 @@ dependencies = [
[[package]] [[package]]
name = "redox_syscall" name = "redox_syscall"
version = "0.2.10" version = "0.2.11"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "8383f39639269cde97d255a32bdb68c047337295414940c68bdd30c2e13203ff" checksum = "8380fe0152551244f0747b1bf41737e0f8a74f97a14ccefd1148187271634f3c"
dependencies = [ dependencies = [
"bitflags", "bitflags",
] ]
@ -904,7 +904,7 @@ checksum = "49874b5167b65d7193b8aba1567f5c7d93d001cafc34600cee003eda787e483f"
[[package]] [[package]]
name = "vst3-com" name = "vst3-com"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/robbert-vdh/vst3-sys.git?branch=fix/atomic-reference-count#1f634714bb1190297ef5eecb4c393fd1a0fa566d" source = "git+https://github.com/RustAudio/vst3-sys.git#81ee70462870a0f4d9e3f9a0e09c8c4539a2e0fe"
dependencies = [ dependencies = [
"vst3-com-macros", "vst3-com-macros",
] ]
@ -912,7 +912,7 @@ dependencies = [
[[package]] [[package]]
name = "vst3-com-macros" name = "vst3-com-macros"
version = "0.2.0" version = "0.2.0"
source = "git+https://github.com/robbert-vdh/vst3-sys.git?branch=fix/atomic-reference-count#1f634714bb1190297ef5eecb4c393fd1a0fa566d" source = "git+https://github.com/RustAudio/vst3-sys.git#81ee70462870a0f4d9e3f9a0e09c8c4539a2e0fe"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -923,7 +923,7 @@ dependencies = [
[[package]] [[package]]
name = "vst3-com-macros-support" name = "vst3-com-macros-support"
version = "0.2.0" version = "0.2.0"
source = "git+https://github.com/robbert-vdh/vst3-sys.git?branch=fix/atomic-reference-count#1f634714bb1190297ef5eecb4c393fd1a0fa566d" source = "git+https://github.com/RustAudio/vst3-sys.git#81ee70462870a0f4d9e3f9a0e09c8c4539a2e0fe"
dependencies = [ dependencies = [
"proc-macro2", "proc-macro2",
"quote", "quote",
@ -933,7 +933,7 @@ dependencies = [
[[package]] [[package]]
name = "vst3-sys" name = "vst3-sys"
version = "0.1.0" version = "0.1.0"
source = "git+https://github.com/robbert-vdh/vst3-sys.git?branch=fix/atomic-reference-count#1f634714bb1190297ef5eecb4c393fd1a0fa566d" source = "git+https://github.com/RustAudio/vst3-sys.git#81ee70462870a0f4d9e3f9a0e09c8c4539a2e0fe"
dependencies = [ dependencies = [
"vst3-com", "vst3-com",
] ]

View file

@ -48,9 +48,7 @@ parking_lot = "0.12"
raw-window-handle = "0.4" raw-window-handle = "0.4"
serde = { version = "1.0", features = ["derive"] } serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0" serde_json = "1.0"
# This contains a number of fixes for the reference counting, cross compilation vst3-sys = { git = "https://github.com/RustAudio/vst3-sys.git" }
# support, and an incorrect return type
vst3-sys = { git = "https://github.com/robbert-vdh/vst3-sys.git", branch = "fix/atomic-reference-count" }
widestring = "1.0.0-beta.1" widestring = "1.0.0-beta.1"
assert_no_alloc = { version = "1.1", optional = true } assert_no_alloc = { version = "1.1", optional = true }