-
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
38bebc2
commit 22f8aed
Showing
10 changed files
with
166 additions
and
173 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.4.1" | ||
version = "0.4.2" | ||
authors = ["Paul Lietar <[email protected]>"] | ||
description = "The audio fetching logic for librespot" | ||
license = "MIT" | ||
|
@@ -9,7 +9,7 @@ edition = "2018" | |
|
||
[dependencies.librespot-core] | ||
path = "../core" | ||
version = "0.4.1" | ||
version = "0.4.2" | ||
|
||
[dependencies] | ||
aes-ctr = "0.6" | ||
|
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.4.1" | ||
version = "0.4.2" | ||
authors = ["Paul Lietar <[email protected]>"] | ||
description = "The discovery and Spotify Connect logic for librespot" | ||
license = "MIT" | ||
|
@@ -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"] |
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.4.1" | ||
version = "0.4.2" | ||
authors = ["Paul Lietar <[email protected]>"] | ||
build = "build.rs" | ||
description = "The core functionality provided by librespot" | ||
|
@@ -10,7 +10,7 @@ edition = "2018" | |
|
||
[dependencies.librespot-protocol] | ||
path = "../protocol" | ||
version = "0.4.1" | ||
version = "0.4.2" | ||
|
||
[dependencies] | ||
aes = "0.6" | ||
|
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.4.1" | ||
version = "0.4.2" | ||
authors = ["Paul Lietar <[email protected]>"] | ||
description = "The discovery logic for librespot" | ||
license = "MIT" | ||
|
@@ -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" | ||
|
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.4.1" | ||
version = "0.4.2" | ||
authors = ["Paul Lietar <[email protected]>"] | ||
description = "The metadata logic for librespot" | ||
license = "MIT" | ||
|
@@ -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" |
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.4.1" | ||
version = "0.4.2" | ||
authors = ["Sasha Hilton <[email protected]>"] | ||
description = "The audio playback logic for librespot" | ||
license = "MIT" | ||
|
@@ -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" | ||
|
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.4.1" | ||
version = "0.4.2" | ||
authors = ["Paul Liétar <[email protected]>"] | ||
build = "build.rs" | ||
description = "The protobuf logic for communicating with Spotify servers" | ||
|
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