Skip to content

Commit 383a6f6

Browse files
committed
Update Cargo.lock
1 parent 797efea commit 383a6f6

10 files changed

Lines changed: 133 additions & 133 deletions

File tree

Cargo.lock

Lines changed: 104 additions & 104 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
rust-version = "1.75"
55
authors = ["Librespot Org"]
66
license = "MIT"
@@ -23,36 +23,36 @@ doc = false
2323

2424
[dependencies.librespot-audio]
2525
path = "audio"
26-
version = "0.5.0"
26+
version = "0.6.0"
2727

2828
[dependencies.librespot-connect]
2929
path = "connect"
30-
version = "0.5.0"
30+
version = "0.6.0"
3131

3232
[dependencies.librespot-core]
3333
path = "core"
34-
version = "0.5.0"
34+
version = "0.6.0"
3535

3636
[dependencies.librespot-discovery]
3737
path = "discovery"
38-
version = "0.5.0"
38+
version = "0.6.0"
3939
default-features = false
4040

4141
[dependencies.librespot-metadata]
4242
path = "metadata"
43-
version = "0.5.0"
43+
version = "0.6.0"
4444

4545
[dependencies.librespot-playback]
4646
path = "playback"
47-
version = "0.5.0"
47+
version = "0.6.0"
4848

4949
[dependencies.librespot-protocol]
5050
path = "protocol"
51-
version = "0.5.0"
51+
version = "0.6.0"
5252

5353
[dependencies.librespot-oauth]
5454
path = "oauth"
55-
version = "0.5.0"
55+
version = "0.6.0"
5656

5757
[dependencies]
5858
data-encoding = "2.5"

audio/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-audio"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
rust-version.workspace = true
55
authors = ["Paul Lietar <[email protected]>"]
66
description = "The audio fetching logic for librespot"
@@ -10,7 +10,7 @@ edition = "2021"
1010

1111
[dependencies.librespot-core]
1212
path = "../core"
13-
version = "0.5.0"
13+
version = "0.6.0"
1414

1515
[dependencies]
1616
aes = "0.8"

connect/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-connect"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
rust-version.workspace = true
55
authors = ["Paul Lietar <[email protected]>"]
66
description = "The discovery and Spotify Connect logic for librespot"
@@ -22,12 +22,12 @@ tokio-stream = "0.1"
2222

2323
[dependencies.librespot-core]
2424
path = "../core"
25-
version = "0.5.0"
25+
version = "0.6.0"
2626

2727
[dependencies.librespot-playback]
2828
path = "../playback"
29-
version = "0.5.0"
29+
version = "0.6.0"
3030

3131
[dependencies.librespot-protocol]
3232
path = "../protocol"
33-
version = "0.5.0"
33+
version = "0.6.0"

core/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-core"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
rust-version.workspace = true
55
authors = ["Paul Lietar <[email protected]>"]
66
build = "build.rs"
@@ -11,11 +11,11 @@ edition = "2021"
1111

1212
[dependencies.librespot-oauth]
1313
path = "../oauth"
14-
version = "0.5.0"
14+
version = "0.6.0"
1515

1616
[dependencies.librespot-protocol]
1717
path = "../protocol"
18-
version = "0.5.0"
18+
version = "0.6.0"
1919

2020
[dependencies]
2121
aes = "0.8"

discovery/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-discovery"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
rust-version.workspace = true
55
authors = ["Paul Lietar <[email protected]>"]
66
description = "The discovery logic for librespot"
@@ -34,7 +34,7 @@ zbus = { version = "4", default-features = false, features = ["tokio"], optional
3434

3535
[dependencies.librespot-core]
3636
path = "../core"
37-
version = "0.5.0"
37+
version = "0.6.0"
3838

3939
[dev-dependencies]
4040
futures = "0.3"

metadata/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-metadata"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
rust-version.workspace = true
55
authors = ["Paul Lietar <[email protected]>"]
66
description = "The metadata logic for librespot"
@@ -20,8 +20,8 @@ serde_json = "1.0"
2020

2121
[dependencies.librespot-core]
2222
path = "../core"
23-
version = "0.5.0"
23+
version = "0.6.0"
2424

2525
[dependencies.librespot-protocol]
2626
path = "../protocol"
27-
version = "0.5.0"
27+
version = "0.6.0"

oauth/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-oauth"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
rust-version.workspace = true
55
authors = ["Nick Steel <[email protected]>"]
66
description = "OAuth authorization code flow with PKCE for obtaining a Spotify access token"

playback/Cargo.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-playback"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
rust-version.workspace = true
55
authors = ["Sasha Hilton <[email protected]>"]
66
description = "The audio playback logic for librespot"
@@ -10,15 +10,15 @@ edition = "2021"
1010

1111
[dependencies.librespot-audio]
1212
path = "../audio"
13-
version = "0.5.0"
13+
version = "0.6.0"
1414

1515
[dependencies.librespot-core]
1616
path = "../core"
17-
version = "0.5.0"
17+
version = "0.6.0"
1818

1919
[dependencies.librespot-metadata]
2020
path = "../metadata"
21-
version = "0.5.0"
21+
version = "0.6.0"
2222

2323
[dependencies]
2424
futures-util = "0.3"

protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "librespot-protocol"
3-
version = "0.5.0"
3+
version = "0.6.0"
44
rust-version.workspace = true
55
authors = ["Paul Liétar <[email protected]>"]
66
build = "build.rs"

0 commit comments

Comments
 (0)