Update Cargo.lock

This commit is contained in:
Roderick van Domburg 2024-10-15 20:38:42 +02:00
parent eae43a7612
commit a974a71cc4
No known key found for this signature in database
GPG key ID: FE2585E713F9F30A
9 changed files with 29 additions and 29 deletions

View file

@ -1,6 +1,6 @@
[package]
name = "librespot"
version = "0.5.0-dev"
version = "0.5.0"
rust-version = "1.74"
authors = ["Librespot Org"]
license = "MIT"
@ -23,35 +23,35 @@ doc = false
[dependencies.librespot-audio]
path = "audio"
version = "0.5.0-dev"
version = "0.5.0"
[dependencies.librespot-connect]
path = "connect"
version = "0.5.0-dev"
version = "0.5.0"
[dependencies.librespot-core]
path = "core"
version = "0.5.0-dev"
version = "0.5.0"
[dependencies.librespot-discovery]
path = "discovery"
version = "0.5.0-dev"
version = "0.5.0"
[dependencies.librespot-metadata]
path = "metadata"
version = "0.5.0-dev"
version = "0.5.0"
[dependencies.librespot-playback]
path = "playback"
version = "0.5.0-dev"
version = "0.5.0"
[dependencies.librespot-protocol]
path = "protocol"
version = "0.5.0-dev"
version = "0.5.0"
[dependencies.librespot-oauth]
path = "oauth"
version = "0.5.0-dev"
version = "0.5.0"
[dependencies]
data-encoding = "2.5"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-audio"
version = "0.5.0-dev"
version = "0.5.0"
rust-version = "1.74"
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The audio fetching logic for librespot"
@ -10,7 +10,7 @@ edition = "2021"
[dependencies.librespot-core]
path = "../core"
version = "0.5.0-dev"
version = "0.5.0"
[dependencies]
aes = "0.8"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-connect"
version = "0.5.0-dev"
version = "0.5.0"
rust-version = "1.74"
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The discovery and Spotify Connect logic for librespot"
@ -22,12 +22,12 @@ tokio-stream = "0.1"
[dependencies.librespot-core]
path = "../core"
version = "0.5.0-dev"
version = "0.5.0"
[dependencies.librespot-playback]
path = "../playback"
version = "0.5.0-dev"
version = "0.5.0"
[dependencies.librespot-protocol]
path = "../protocol"
version = "0.5.0-dev"
version = "0.5.0"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-core"
version = "0.5.0-dev"
version = "0.5.0"
rust-version = "1.74"
authors = ["Paul Lietar <paul@lietar.net>"]
build = "build.rs"
@ -11,11 +11,11 @@ edition = "2021"
[dependencies.librespot-oauth]
path = "../oauth"
version = "0.5.0-dev"
version = "0.5.0"
[dependencies.librespot-protocol]
path = "../protocol"
version = "0.5.0-dev"
version = "0.5.0"
[dependencies]
aes = "0.8"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-discovery"
version = "0.5.0-dev"
version = "0.5.0"
rust-version = "1.74"
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The discovery logic for librespot"
@ -31,7 +31,7 @@ tokio = { version = "1", features = ["parking_lot", "sync", "rt"] }
[dependencies.librespot-core]
path = "../core"
version = "0.5.0-dev"
version = "0.5.0"
[dev-dependencies]
futures = "0.3"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-metadata"
version = "0.5.0-dev"
version = "0.5.0"
rust-version = "1.74"
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The metadata logic for librespot"
@ -20,8 +20,8 @@ serde_json = "1.0"
[dependencies.librespot-core]
path = "../core"
version = "0.5.0-dev"
version = "0.5.0"
[dependencies.librespot-protocol]
path = "../protocol"
version = "0.5.0-dev"
version = "0.5.0"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-oauth"
version = "0.5.0-dev"
version = "0.5.0"
rust-version = "1.73"
authors = ["Nick Steel <nick@nsteel.co.uk>"]
description = "OAuth authorization code flow with PKCE for obtaining a Spotify access token"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-playback"
version = "0.5.0-dev"
version = "0.5.0"
rust-version = "1.74"
authors = ["Sasha Hilton <sashahilton00@gmail.com>"]
description = "The audio playback logic for librespot"
@ -10,15 +10,15 @@ edition = "2021"
[dependencies.librespot-audio]
path = "../audio"
version = "0.5.0-dev"
version = "0.5.0"
[dependencies.librespot-core]
path = "../core"
version = "0.5.0-dev"
version = "0.5.0"
[dependencies.librespot-metadata]
path = "../metadata"
version = "0.5.0-dev"
version = "0.5.0"
[dependencies]
futures-util = "0.3"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-protocol"
version = "0.5.0-dev"
version = "0.5.0"
rust-version = "1.74"
authors = ["Paul Liétar <paul@lietar.net>"]
build = "build.rs"