Skip to content

Commit

Permalink
Update Cargo.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
roderickvd committed May 23, 2022
1 parent 15aea74 commit 88e64bd
Show file tree
Hide file tree
Showing 9 changed files with 35 additions and 35 deletions.
16 changes: 8 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot"
version = "0.4.0"
version = "0.4.1"
authors = ["Librespot Org"]
license = "MIT"
description = "An open source client library for Spotify, with support for Spotify Connect"
Expand All @@ -22,31 +22,31 @@ doc = false

[dependencies.librespot-audio]
path = "audio"
version = "0.4.0"
version = "0.4.1"

[dependencies.librespot-connect]
path = "connect"
version = "0.4.0"
version = "0.4.1"

[dependencies.librespot-core]
path = "core"
version = "0.4.0"
version = "0.4.1"

[dependencies.librespot-discovery]
path = "discovery"
version = "0.4.0"
version = "0.4.1"

[dependencies.librespot-metadata]
path = "metadata"
version = "0.4.0"
version = "0.4.1"

[dependencies.librespot-playback]
path = "playback"
version = "0.4.0"
version = "0.4.1"

[dependencies.librespot-protocol]
path = "protocol"
version = "0.4.0"
version = "0.4.1"

[dependencies]
base64 = "0.13"
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.4.0"
version = "0.4.1"
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The audio fetching logic for librespot"
license = "MIT"
Expand All @@ -9,7 +9,7 @@ edition = "2018"

[dependencies.librespot-core]
path = "../core"
version = "0.4.0"
version = "0.4.1"

[dependencies]
aes-ctr = "0.6"
Expand Down
10 changes: 5 additions & 5 deletions connect/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot-connect"
version = "0.4.0"
version = "0.4.1"
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The discovery and Spotify Connect logic for librespot"
license = "MIT"
Expand All @@ -20,19 +20,19 @@ tokio-stream = "0.1.1"

[dependencies.librespot-core]
path = "../core"
version = "0.4.0"
version = "0.4.1"

[dependencies.librespot-playback]
path = "../playback"
version = "0.4.0"
version = "0.4.1"

[dependencies.librespot-protocol]
path = "../protocol"
version = "0.4.0"
version = "0.4.1"

[dependencies.librespot-discovery]
path = "../discovery"
version = "0.4.0"
version = "0.4.1"

[features]
with-dns-sd = ["librespot-discovery/with-dns-sd"]
4 changes: 2 additions & 2 deletions core/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "librespot-core"
version = "0.4.0"
version = "0.4.1"
authors = ["Paul Lietar <paul@lietar.net>"]
build = "build.rs"
description = "The core functionality provided by librespot"
Expand All @@ -10,7 +10,7 @@ edition = "2018"

[dependencies.librespot-protocol]
path = "../protocol"
version = "0.4.0"
version = "0.4.1"

[dependencies]
aes = "0.6"
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.4.0"
version = "0.4.1"
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The discovery logic for librespot"
license = "MIT"
Expand All @@ -27,7 +27,7 @@ dns-sd = { version = "0.1.3", optional = true }
[dependencies.librespot-core]
path = "../core"
default_features = false
version = "0.4.0"
version = "0.4.1"

[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.4.0"
version = "0.4.1"
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The metadata logic for librespot"
license = "MIT"
Expand All @@ -15,7 +15,7 @@ log = "0.4"

[dependencies.librespot-core]
path = "../core"
version = "0.4.0"
version = "0.4.1"
[dependencies.librespot-protocol]
path = "../protocol"
version = "0.4.0"
version = "0.4.1"
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.4.0"
version = "0.4.1"
authors = ["Sasha Hilton <sashahilton00@gmail.com>"]
description = "The audio playback logic for librespot"
license = "MIT"
Expand All @@ -9,13 +9,13 @@ edition = "2018"

[dependencies.librespot-audio]
path = "../audio"
version = "0.4.0"
version = "0.4.1"
[dependencies.librespot-core]
path = "../core"
version = "0.4.0"
version = "0.4.1"
[dependencies.librespot-metadata]
path = "../metadata"
version = "0.4.0"
version = "0.4.1"

[dependencies]
futures-executor = "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.4.0"
version = "0.4.1"
authors = ["Paul Liétar <paul@lietar.net>"]
build = "build.rs"
description = "The protobuf logic for communicating with Spotify servers"
Expand Down

0 comments on commit 88e64bd

Please sign in to comment.