Bump jack from 0.6.6 to 0.7.0 (#720)

This commit is contained in:
dependabot[bot] 2021-05-09 21:03:25 +00:00 committed by GitHub
parent 539e9669a4
commit fce91f4e61
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 3 deletions

16
Cargo.lock generated
View file

@ -281,7 +281,7 @@ dependencies = [
"alsa",
"core-foundation-sys",
"coreaudio-rs",
"jack",
"jack 0.6.6",
"jni",
"js-sys",
"lazy_static",
@ -952,6 +952,18 @@ dependencies = [
"libc",
]
[[package]]
name = "jack"
version = "0.7.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "370ed0ab943f1484a94d6328bf612907f5de2748531b873994f513d8806e9d9d"
dependencies = [
"bitflags",
"jack-sys",
"lazy_static",
"libc",
]
[[package]]
name = "jack-sys"
version = "0.2.2"
@ -1251,7 +1263,7 @@ dependencies = [
"glib",
"gstreamer",
"gstreamer-app",
"jack",
"jack 0.7.0",
"libpulse-binding",
"libpulse-simple-binding",
"librespot-audio",

View file

@ -29,7 +29,7 @@ alsa = { version = "0.5", optional = true }
portaudio-rs = { version = "0.3", optional = true }
libpulse-binding = { version = "2", optional = true, default-features = false }
libpulse-simple-binding = { version = "2", optional = true, default-features = false }
jack = { version = "0.6", optional = true }
jack = { version = "0.7", optional = true }
sdl2 = { version = "0.34.3", optional = true }
gstreamer = { version = "0.16", optional = true }
gstreamer-app = { version = "0.16", optional = true }