feat: Go back to librespot release

This commit is contained in:
Henrik Friedrichsen
2024-10-15 21:15:07 +02:00
parent 947c0a44d9
commit 3129140a9b
2 changed files with 23 additions and 16 deletions

31
Cargo.lock generated
View File

@@ -2160,8 +2160,9 @@ dependencies = [
[[package]]
name = "librespot-audio"
version = "0.5.0-dev"
source = "git+https://github.com/librespot-org/librespot?branch=dev#f43ed299708d4f265e0fb69a0313ba2f22b74331"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5fbda070a5598b32718e497f585f46891f7113e64aff20a13c0f2ba8fe7ccad9"
dependencies = [
"aes",
"bytes",
@@ -2180,8 +2181,9 @@ dependencies = [
[[package]]
name = "librespot-core"
version = "0.5.0-dev"
source = "git+https://github.com/librespot-org/librespot?branch=dev#f43ed299708d4f265e0fb69a0313ba2f22b74331"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "505a5ddd966231755994b60435607a1e8ae1d41c7f1169b078e0511bfb82d931"
dependencies = [
"aes",
"base64 0.22.1",
@@ -2211,6 +2213,7 @@ dependencies = [
"once_cell",
"parking_lot",
"pbkdf2",
"pin-project-lite",
"priority-queue",
"protobuf",
"quick-xml 0.36.1",
@@ -2234,8 +2237,9 @@ dependencies = [
[[package]]
name = "librespot-metadata"
version = "0.5.0-dev"
source = "git+https://github.com/librespot-org/librespot?branch=dev#f43ed299708d4f265e0fb69a0313ba2f22b74331"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "6a10ab5a390f65281e763cd09c617b173f0e665994eae3d242526924625fdc66"
dependencies = [
"async-trait",
"bytes",
@@ -2251,8 +2255,9 @@ dependencies = [
[[package]]
name = "librespot-oauth"
version = "0.5.0-dev"
source = "git+https://github.com/librespot-org/librespot?branch=dev#f43ed299708d4f265e0fb69a0313ba2f22b74331"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "57bda94233b358fb41c04ed15507c61136c80efe876c6e05a10ddb9a182b144e"
dependencies = [
"log",
"oauth2",
@@ -2262,8 +2267,9 @@ dependencies = [
[[package]]
name = "librespot-playback"
version = "0.5.0-dev"
source = "git+https://github.com/librespot-org/librespot?branch=dev#f43ed299708d4f265e0fb69a0313ba2f22b74331"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "5b1bcfe1d72c5ac14c798c7e3e1c20e1fb6af2b9c254794545cfcb1f2a4627e2"
dependencies = [
"alsa",
"cpal",
@@ -2288,8 +2294,9 @@ dependencies = [
[[package]]
name = "librespot-protocol"
version = "0.5.0-dev"
source = "git+https://github.com/librespot-org/librespot?branch=dev#f43ed299708d4f265e0fb69a0313ba2f22b74331"
version = "0.5.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "0d6f343f573e0469d3ff8a02b99bbd9789faa01e2ff167332542ac840a8b31e7"
dependencies = [
"protobuf",
"protobuf-codegen",

View File

@@ -46,10 +46,10 @@ fern = "0.6"
futures = "0.3"
ioctl-rs = {version = "0.2", optional = true}
libc = "0.2.159"
librespot-core = { git = "https://github.com/librespot-org/librespot", branch = "dev" }
librespot-oauth = { git = "https://github.com/librespot-org/librespot", branch = "dev" }
librespot-playback = { git = "https://github.com/librespot-org/librespot", branch = "dev" }
librespot-protocol = { git = "https://github.com/librespot-org/librespot", branch = "dev" }
librespot-core = "0.5.0"
librespot-oauth = "0.5.0"
librespot-playback = "0.5.0"
librespot-protocol = "0.5.0"
log = "0.4.22"
pancurses = {version = "0.17.0", optional = true}
parse_duration = "2.1.1"