1
0
Fork 0

Use an older pre-rebase jack commit

The current version of the jack crate always links to libjack, even when
using the dynamic loading feature.
This commit is contained in:
Robbert van der Helm 2022-11-03 03:20:04 +01:00
parent 6c0df7ec39
commit 439b9d0bbb
2 changed files with 6 additions and 5 deletions

6
Cargo.lock generated
View file

@ -2110,7 +2110,7 @@ checksum = "4217ad341ebadf8d8e724e264f13e593e0648f5b3e94b3896a5df283be015ecc"
[[package]] [[package]]
name = "jack" name = "jack"
version = "0.10.0" version = "0.10.0"
source = "git+https://github.com/robbert-vdh/rust-jack.git?branch=feature/handle-library-failure#1b4055a7b9f6f6bab7646f3dc10cc9355791d706" source = "git+https://github.com/robbert-vdh/rust-jack.git?tag=tmp-handle-library-failure#1b4055a7b9f6f6bab7646f3dc10cc9355791d706"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"jack-sys", "jack-sys",
@ -2122,7 +2122,7 @@ dependencies = [
[[package]] [[package]]
name = "jack-sys" name = "jack-sys"
version = "0.4.0" version = "0.4.0"
source = "git+https://github.com/robbert-vdh/rust-jack.git?branch=feature/handle-library-failure#1b4055a7b9f6f6bab7646f3dc10cc9355791d706" source = "git+https://github.com/robbert-vdh/rust-jack.git?tag=tmp-handle-library-failure#1b4055a7b9f6f6bab7646f3dc10cc9355791d706"
dependencies = [ dependencies = [
"bitflags", "bitflags",
"lazy_static", "lazy_static",
@ -4311,7 +4311,7 @@ version = "1.6.3"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675" checksum = "97fee6b57c6a41524a810daee9286c02d7752c4253064d0b05472833a438f675"
dependencies = [ dependencies = [
"cfg-if 1.0.0", "cfg-if 0.1.10",
"rand 0.8.5", "rand 0.8.5",
"static_assertions", "static_assertions",
] ]

View file

@ -107,8 +107,9 @@ baseview = { git = "https://github.com/robbert-vdh/baseview.git", branch = "feat
# All the claps! # All the claps!
clap = { version = "3.2", features = ["derive"], optional = true } clap = { version = "3.2", features = ["derive"], optional = true }
cpal = { version = "0.14.1", optional = true } cpal = { version = "0.14.1", optional = true }
# The current upstream jack panics when it can't load the JACK library, which breaks the backend fallback # Current upstream JACK always links to libjack, even when using the default
jack = { git = "https://github.com/robbert-vdh/rust-jack.git", branch = "feature/handle-library-failure", optional = true } # dynamic loading feature
jack = { git = "https://github.com/robbert-vdh/rust-jack.git", tag = "tmp-handle-library-failure", optional = true }
rtrb = { version = "0.2.2", optional = true } rtrb = { version = "0.2.2", optional = true }
# Used for the `vst3` feature # Used for the `vst3` feature