Skip to content

Commit

Permalink
Update Cargo.lock
Browse files Browse the repository at this point in the history
  • Loading branch information
roderickvd committed Jul 29, 2022
1 parent 38bebc2 commit 22f8aed
Show file tree
Hide file tree
Showing 10 changed files with 166 additions and 173 deletions.
283 changes: 138 additions & 145 deletions Cargo.lock

Large diffs are not rendered by default.

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.1"
version = "0.4.2"
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.1"
version = "0.4.2"

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

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

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

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

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

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

[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.1"
version = "0.4.2"
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.1"
version = "0.4.2"

[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.1"
version = "0.4.2"
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.1"
version = "0.4.2"

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

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

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

[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.1"
version = "0.4.2"
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.1"
version = "0.4.2"

[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.1"
version = "0.4.2"
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.1"
version = "0.4.2"

[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.1"
version = "0.4.2"
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.1"
version = "0.4.2"
[dependencies.librespot-protocol]
path = "../protocol"
version = "0.4.1"
version = "0.4.2"
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.1"
version = "0.4.2"
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.1"
version = "0.4.2"
[dependencies.librespot-core]
path = "../core"
version = "0.4.1"
version = "0.4.2"
[dependencies.librespot-metadata]
path = "../metadata"
version = "0.4.1"
version = "0.4.2"

[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.1"
version = "0.4.2"
authors = ["Paul Liétar <paul@lietar.net>"]
build = "build.rs"
description = "The protobuf logic for communicating with Spotify servers"
Expand Down
2 changes: 1 addition & 1 deletion publish.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ function updateVersion {
fi
crate_path="$WORKINGDIR/$CRATE_DIR/Cargo.toml"
crate_path=${crate_path//\/\///}
sed -i '' "s/^version.*/version = \"$1\"/g" "$crate_path"
sed -i "s/^version.*/version = \"$1\"/g" "$crate_path"
echo "Path is $crate_path"
if [ "$CRATE" = "librespot" ]
then
Expand Down

0 comments on commit 22f8aed

Please sign in to comment.