Merge branch 'master' into dev

This commit is contained in:
Sasha Hilton 2021-02-22 00:57:45 +00:00
commit d8c1b491c4
8 changed files with 30 additions and 30 deletions

14
Cargo.lock generated
View file

@ -1428,7 +1428,7 @@ dependencies = [
[[package]]
name = "librespot"
version = "0.1.5"
version = "0.1.6"
dependencies = [
"base64 0.13.0",
"env_logger",
@ -1457,7 +1457,7 @@ dependencies = [
[[package]]
name = "librespot-audio"
version = "0.1.5"
version = "0.1.6"
dependencies = [
"aes-ctr",
"bit-set",
@ -1476,7 +1476,7 @@ dependencies = [
[[package]]
name = "librespot-connect"
version = "0.1.5"
version = "0.1.6"
dependencies = [
"aes-ctr",
"base64 0.13.0",
@ -1503,7 +1503,7 @@ dependencies = [
[[package]]
name = "librespot-core"
version = "0.1.5"
version = "0.1.6"
dependencies = [
"aes",
"base64 0.13.0",
@ -1539,7 +1539,7 @@ dependencies = [
[[package]]
name = "librespot-metadata"
version = "0.1.5"
version = "0.1.6"
dependencies = [
"byteorder",
"futures",
@ -1552,7 +1552,7 @@ dependencies = [
[[package]]
name = "librespot-playback"
version = "0.1.5"
version = "0.1.6"
dependencies = [
"alsa",
"byteorder",
@ -1578,7 +1578,7 @@ dependencies = [
[[package]]
name = "librespot-protocol"
version = "0.1.5"
version = "0.1.6"
dependencies = [
"glob",
"protobuf",

View file

@ -1,6 +1,6 @@
[package]
name = "librespot"
version = "0.1.5"
version = "0.1.6"
authors = ["Librespot Org"]
license = "MIT"
description = "An open source client library for Spotify, with support for Spotify Connect"
@ -22,22 +22,22 @@ doc = false
[dependencies.librespot-audio]
path = "audio"
version = "0.1.5"
version = "0.1.6"
[dependencies.librespot-connect]
path = "connect"
version = "0.1.5"
version = "0.1.6"
[dependencies.librespot-core]
path = "core"
version = "0.1.5"
version = "0.1.6"
[dependencies.librespot-metadata]
path = "metadata"
version = "0.1.5"
version = "0.1.6"
[dependencies.librespot-playback]
path = "playback"
version = "0.1.5"
version = "0.1.6"
[dependencies.librespot-protocol]
path = "protocol"
version = "0.1.5"
version = "0.1.6"
[dependencies]
base64 = "0.13"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-audio"
version = "0.1.5"
version = "0.1.6"
authors = ["Paul Lietar <paul@lietar.net>"]
description="The audio fetching and processing logic for librespot"
license="MIT"
@ -8,7 +8,7 @@ edition = "2018"
[dependencies.librespot-core]
path = "../core"
version = "0.1.5"
version = "0.1.6"
[dependencies]
aes-ctr = "0.6"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-connect"
version = "0.1.5"
version = "0.1.6"
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The discovery and Spotify Connect logic for librespot"
license = "MIT"
@ -9,13 +9,13 @@ edition = "2018"
[dependencies.librespot-core]
path = "../core"
version = "0.1.5"
version = "0.1.6"
[dependencies.librespot-playback]
path = "../playback"
version = "0.1.5"
version = "0.1.6"
[dependencies.librespot-protocol]
path = "../protocol"
version = "0.1.5"
version = "0.1.6"
[dependencies]
aes-ctr = "0.6"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-core"
version = "0.1.5"
version = "0.1.6"
authors = ["Paul Lietar <paul@lietar.net>"]
build = "build.rs"
description = "The core functionality provided by librespot"
@ -10,7 +10,7 @@ edition = "2018"
[dependencies.librespot-protocol]
path = "../protocol"
version = "0.1.5"
version = "0.1.6"
[dependencies]
aes = "0.6"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-metadata"
version = "0.1.5"
version = "0.1.6"
authors = ["Paul Lietar <paul@lietar.net>"]
description = "The metadata logic for librespot"
license = "MIT"
@ -16,7 +16,7 @@ log = "0.4"
[dependencies.librespot-core]
path = "../core"
version = "0.1.5"
version = "0.1.6"
[dependencies.librespot-protocol]
path = "../protocol"
version = "0.1.5"
version = "0.1.6"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-playback"
version = "0.1.5"
version = "0.1.6"
authors = ["Sasha Hilton <sashahilton00@gmail.com>"]
description = "The audio playback logic for librespot"
license = "MIT"
@ -9,13 +9,13 @@ edition = "2018"
[dependencies.librespot-audio]
path = "../audio"
version = "0.1.5"
version = "0.1.6"
[dependencies.librespot-core]
path = "../core"
version = "0.1.5"
version = "0.1.6"
[dependencies.librespot-metadata]
path = "../metadata"
version = "0.1.5"
version = "0.1.6"
[dependencies]
futures = "0.1"

View file

@ -1,6 +1,6 @@
[package]
name = "librespot-protocol"
version = "0.1.5"
version = "0.1.6"
authors = ["Paul Liétar <paul@lietar.net>"]
build = "build.rs"
description = "The protobuf logic for communicating with Spotify servers"