mirror of
https://github.com/librespot-org/librespot.git
synced 2024-12-18 17:11:53 +00:00
Update Cargo.lock
This commit is contained in:
parent
eae43a7612
commit
a974a71cc4
9 changed files with 29 additions and 29 deletions
18
Cargo.toml-e
18
Cargo.toml-e
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "librespot"
|
name = "librespot"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
rust-version = "1.74"
|
rust-version = "1.74"
|
||||||
authors = ["Librespot Org"]
|
authors = ["Librespot Org"]
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
|
@ -23,35 +23,35 @@ doc = false
|
||||||
|
|
||||||
[dependencies.librespot-audio]
|
[dependencies.librespot-audio]
|
||||||
path = "audio"
|
path = "audio"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
||||||
[dependencies.librespot-connect]
|
[dependencies.librespot-connect]
|
||||||
path = "connect"
|
path = "connect"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
||||||
[dependencies.librespot-core]
|
[dependencies.librespot-core]
|
||||||
path = "core"
|
path = "core"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
||||||
[dependencies.librespot-discovery]
|
[dependencies.librespot-discovery]
|
||||||
path = "discovery"
|
path = "discovery"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
||||||
[dependencies.librespot-metadata]
|
[dependencies.librespot-metadata]
|
||||||
path = "metadata"
|
path = "metadata"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
||||||
[dependencies.librespot-playback]
|
[dependencies.librespot-playback]
|
||||||
path = "playback"
|
path = "playback"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
||||||
[dependencies.librespot-protocol]
|
[dependencies.librespot-protocol]
|
||||||
path = "protocol"
|
path = "protocol"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
||||||
[dependencies.librespot-oauth]
|
[dependencies.librespot-oauth]
|
||||||
path = "oauth"
|
path = "oauth"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
data-encoding = "2.5"
|
data-encoding = "2.5"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "librespot-audio"
|
name = "librespot-audio"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
rust-version = "1.74"
|
rust-version = "1.74"
|
||||||
authors = ["Paul Lietar <paul@lietar.net>"]
|
authors = ["Paul Lietar <paul@lietar.net>"]
|
||||||
description = "The audio fetching logic for librespot"
|
description = "The audio fetching logic for librespot"
|
||||||
|
@ -10,7 +10,7 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies.librespot-core]
|
[dependencies.librespot-core]
|
||||||
path = "../core"
|
path = "../core"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
aes = "0.8"
|
aes = "0.8"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "librespot-connect"
|
name = "librespot-connect"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
rust-version = "1.74"
|
rust-version = "1.74"
|
||||||
authors = ["Paul Lietar <paul@lietar.net>"]
|
authors = ["Paul Lietar <paul@lietar.net>"]
|
||||||
description = "The discovery and Spotify Connect logic for librespot"
|
description = "The discovery and Spotify Connect logic for librespot"
|
||||||
|
@ -22,12 +22,12 @@ tokio-stream = "0.1"
|
||||||
|
|
||||||
[dependencies.librespot-core]
|
[dependencies.librespot-core]
|
||||||
path = "../core"
|
path = "../core"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
||||||
[dependencies.librespot-playback]
|
[dependencies.librespot-playback]
|
||||||
path = "../playback"
|
path = "../playback"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
||||||
[dependencies.librespot-protocol]
|
[dependencies.librespot-protocol]
|
||||||
path = "../protocol"
|
path = "../protocol"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "librespot-core"
|
name = "librespot-core"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
rust-version = "1.74"
|
rust-version = "1.74"
|
||||||
authors = ["Paul Lietar <paul@lietar.net>"]
|
authors = ["Paul Lietar <paul@lietar.net>"]
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
@ -11,11 +11,11 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies.librespot-oauth]
|
[dependencies.librespot-oauth]
|
||||||
path = "../oauth"
|
path = "../oauth"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
||||||
[dependencies.librespot-protocol]
|
[dependencies.librespot-protocol]
|
||||||
path = "../protocol"
|
path = "../protocol"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
aes = "0.8"
|
aes = "0.8"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "librespot-discovery"
|
name = "librespot-discovery"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
rust-version = "1.74"
|
rust-version = "1.74"
|
||||||
authors = ["Paul Lietar <paul@lietar.net>"]
|
authors = ["Paul Lietar <paul@lietar.net>"]
|
||||||
description = "The discovery logic for librespot"
|
description = "The discovery logic for librespot"
|
||||||
|
@ -31,7 +31,7 @@ tokio = { version = "1", features = ["parking_lot", "sync", "rt"] }
|
||||||
|
|
||||||
[dependencies.librespot-core]
|
[dependencies.librespot-core]
|
||||||
path = "../core"
|
path = "../core"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
futures = "0.3"
|
futures = "0.3"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "librespot-metadata"
|
name = "librespot-metadata"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
rust-version = "1.74"
|
rust-version = "1.74"
|
||||||
authors = ["Paul Lietar <paul@lietar.net>"]
|
authors = ["Paul Lietar <paul@lietar.net>"]
|
||||||
description = "The metadata logic for librespot"
|
description = "The metadata logic for librespot"
|
||||||
|
@ -20,8 +20,8 @@ serde_json = "1.0"
|
||||||
|
|
||||||
[dependencies.librespot-core]
|
[dependencies.librespot-core]
|
||||||
path = "../core"
|
path = "../core"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
||||||
[dependencies.librespot-protocol]
|
[dependencies.librespot-protocol]
|
||||||
path = "../protocol"
|
path = "../protocol"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "librespot-oauth"
|
name = "librespot-oauth"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
rust-version = "1.73"
|
rust-version = "1.73"
|
||||||
authors = ["Nick Steel <nick@nsteel.co.uk>"]
|
authors = ["Nick Steel <nick@nsteel.co.uk>"]
|
||||||
description = "OAuth authorization code flow with PKCE for obtaining a Spotify access token"
|
description = "OAuth authorization code flow with PKCE for obtaining a Spotify access token"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "librespot-playback"
|
name = "librespot-playback"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
rust-version = "1.74"
|
rust-version = "1.74"
|
||||||
authors = ["Sasha Hilton <sashahilton00@gmail.com>"]
|
authors = ["Sasha Hilton <sashahilton00@gmail.com>"]
|
||||||
description = "The audio playback logic for librespot"
|
description = "The audio playback logic for librespot"
|
||||||
|
@ -10,15 +10,15 @@ edition = "2021"
|
||||||
|
|
||||||
[dependencies.librespot-audio]
|
[dependencies.librespot-audio]
|
||||||
path = "../audio"
|
path = "../audio"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
||||||
[dependencies.librespot-core]
|
[dependencies.librespot-core]
|
||||||
path = "../core"
|
path = "../core"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
||||||
[dependencies.librespot-metadata]
|
[dependencies.librespot-metadata]
|
||||||
path = "../metadata"
|
path = "../metadata"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
futures-util = "0.3"
|
futures-util = "0.3"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[package]
|
[package]
|
||||||
name = "librespot-protocol"
|
name = "librespot-protocol"
|
||||||
version = "0.5.0-dev"
|
version = "0.5.0"
|
||||||
rust-version = "1.74"
|
rust-version = "1.74"
|
||||||
authors = ["Paul Liétar <paul@lietar.net>"]
|
authors = ["Paul Liétar <paul@lietar.net>"]
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
|
|
Loading…
Reference in a new issue