-
Notifications
You must be signed in to change notification settings - Fork 639
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
797efea
commit 383a6f6
Showing
10 changed files
with
133 additions
and
133 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
description = "The audio fetching logic for librespot" | ||
|
@@ -10,7 +10,7 @@ edition = "2021" | |
|
||
[dependencies.librespot-core] | ||
path = "../core" | ||
version = "0.5.0" | ||
version = "0.6.0" | ||
|
||
[dependencies] | ||
aes = "0.8" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
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" | ||
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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
build = "build.rs" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
description = "The discovery logic for librespot" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
description = "The metadata logic for librespot" | ||
|
@@ -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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
description = "OAuth authorization code flow with PKCE for obtaining a Spotify access token" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
description = "The audio playback logic for librespot" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 <[email protected]>"] | ||
build = "build.rs" | ||
|