Skip to content

Commit

Permalink
Update Cargo.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
roderickvd committed Oct 30, 2024
1 parent 797efea commit 383a6f6
Show file tree
Hide file tree
Showing 10 changed files with 133 additions and 133 deletions.
208 changes: 104 additions & 104 deletions Cargo.lock

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot"
version = "0.5.0"
version = "0.6.0"
rust-version = "1.75"
authors = ["Librespot Org"]
license = "MIT"
Expand All @@ -23,36 +23,36 @@ doc = false

[dependencies.librespot-audio]
path = "audio"
version = "0.5.0"
version = "0.6.0"

[dependencies.librespot-connect]
path = "connect"
version = "0.5.0"
version = "0.6.0"

[dependencies.librespot-core]
path = "core"
version = "0.5.0"
version = "0.6.0"

[dependencies.librespot-discovery]
path = "discovery"
version = "0.5.0"
version = "0.6.0"
default-features = false

[dependencies.librespot-metadata]
path = "metadata"
version = "0.5.0"
version = "0.6.0"

[dependencies.librespot-playback]
path = "playback"
version = "0.5.0"
version = "0.6.0"

[dependencies.librespot-protocol]
path = "protocol"
version = "0.5.0"
version = "0.6.0"

[dependencies.librespot-oauth]
path = "oauth"
version = "0.5.0"
version = "0.6.0"

[dependencies]
data-encoding = "2.5"
Expand Down
4 changes: 2 additions & 2 deletions audio/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot-audio"
version = "0.5.0"
version = "0.6.0"
rust-version.workspace = true
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The audio fetching logic for librespot"
Expand All @@ -10,7 +10,7 @@ edition = "2021"

[dependencies.librespot-core]
path = "../core"
version = "0.5.0"
version = "0.6.0"

[dependencies]
aes = "0.8"
Expand Down
8 changes: 4 additions & 4 deletions connect/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot-connect"
version = "0.5.0"
version = "0.6.0"
rust-version.workspace = true
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The discovery and Spotify Connect logic for librespot"
Expand All @@ -22,12 +22,12 @@ tokio-stream = "0.1"

[dependencies.librespot-core]
path = "../core"
version = "0.5.0"
version = "0.6.0"

[dependencies.librespot-playback]
path = "../playback"
version = "0.5.0"
version = "0.6.0"

[dependencies.librespot-protocol]
path = "../protocol"
version = "0.5.0"
version = "0.6.0"
6 changes: 3 additions & 3 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot-core"
version = "0.5.0"
version = "0.6.0"
rust-version.workspace = true
authors = ["Paul Lietar <paul@lietar.net>"]
build = "build.rs"
Expand All @@ -11,11 +11,11 @@ edition = "2021"

[dependencies.librespot-oauth]
path = "../oauth"
version = "0.5.0"
version = "0.6.0"

[dependencies.librespot-protocol]
path = "../protocol"
version = "0.5.0"
version = "0.6.0"

[dependencies]
aes = "0.8"
Expand Down
4 changes: 2 additions & 2 deletions discovery/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot-discovery"
version = "0.5.0"
version = "0.6.0"
rust-version.workspace = true
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The discovery logic for librespot"
Expand Down Expand Up @@ -34,7 +34,7 @@ zbus = { version = "4", default-features = false, features = ["tokio"], optional

[dependencies.librespot-core]
path = "../core"
version = "0.5.0"
version = "0.6.0"

[dev-dependencies]
futures = "0.3"
Expand Down
6 changes: 3 additions & 3 deletions metadata/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot-metadata"
version = "0.5.0"
version = "0.6.0"
rust-version.workspace = true
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The metadata logic for librespot"
Expand All @@ -20,8 +20,8 @@ serde_json = "1.0"

[dependencies.librespot-core]
path = "../core"
version = "0.5.0"
version = "0.6.0"

[dependencies.librespot-protocol]
path = "../protocol"
version = "0.5.0"
version = "0.6.0"
2 changes: 1 addition & 1 deletion oauth/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot-oauth"
version = "0.5.0"
version = "0.6.0"
rust-version.workspace = true
authors = ["Nick Steel <nick@nsteel.co.uk>"]
description = "OAuth authorization code flow with PKCE for obtaining a Spotify access token"
Expand Down
8 changes: 4 additions & 4 deletions playback/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot-playback"
version = "0.5.0"
version = "0.6.0"
rust-version.workspace = true
authors = ["Sasha Hilton <sashahilton00@gmail.com>"]
description = "The audio playback logic for librespot"
Expand All @@ -10,15 +10,15 @@ edition = "2021"

[dependencies.librespot-audio]
path = "../audio"
version = "0.5.0"
version = "0.6.0"

[dependencies.librespot-core]
path = "../core"
version = "0.5.0"
version = "0.6.0"

[dependencies.librespot-metadata]
path = "../metadata"
version = "0.5.0"
version = "0.6.0"

[dependencies]
futures-util = "0.3"
Expand Down
2 changes: 1 addition & 1 deletion protocol/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot-protocol"
version = "0.5.0"
version = "0.6.0"
rust-version.workspace = true
authors = ["Paul Liétar <paul@lietar.net>"]
build = "build.rs"
Expand Down

0 comments on commit 383a6f6

Please sign in to comment.