Skip to content

Commit 84d28e8

Browse files
committed
Update Cargo.lock
1 parent b629f61 commit 84d28e8

File tree

19 files changed

+549
-145
lines changed

19 files changed

+549
-145
lines changed

Cargo.lock

Lines changed: 113 additions & 116 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-dev"
3+
version = "0.5.0"
44
rust-version = "1.74"
55
authors = ["Librespot Org"]
66
license = "MIT"
@@ -23,35 +23,35 @@ doc = false
2323

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

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

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

3636
[dependencies.librespot-discovery]
3737
path = "discovery"
38-
version = "0.5.0-dev"
38+
version = "0.5.0"
3939

4040
[dependencies.librespot-metadata]
4141
path = "metadata"
42-
version = "0.5.0-dev"
42+
version = "0.5.0"
4343

4444
[dependencies.librespot-playback]
4545
path = "playback"
46-
version = "0.5.0-dev"
46+
version = "0.5.0"
4747

4848
[dependencies.librespot-protocol]
4949
path = "protocol"
50-
version = "0.5.0-dev"
50+
version = "0.5.0"
5151

5252
[dependencies.librespot-oauth]
5353
path = "oauth"
54-
version = "0.5.0-dev"
54+
version = "0.5.0"
5555

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

Cargo.toml-e

Lines changed: 100 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,100 @@
1+
[package]
2+
name = "librespot"
3+
version = "0.5.0-dev"
4+
rust-version = "1.74"
5+
authors = ["Librespot Org"]
6+
license = "MIT"
7+
description = "An open source client library for Spotify, with support for Spotify Connect"
8+
keywords = ["spotify"]
9+
repository = "https://github.com/librespot-org/librespot"
10+
readme = "README.md"
11+
edition = "2021"
12+
13+
[workspace]
14+
15+
[lib]
16+
name = "librespot"
17+
path = "src/lib.rs"
18+
19+
[[bin]]
20+
name = "librespot"
21+
path = "src/main.rs"
22+
doc = false
23+
24+
[dependencies.librespot-audio]
25+
path = "audio"
26+
version = "0.5.0-dev"
27+
28+
[dependencies.librespot-connect]
29+
path = "connect"
30+
version = "0.5.0-dev"
31+
32+
[dependencies.librespot-core]
33+
path = "core"
34+
version = "0.5.0-dev"
35+
36+
[dependencies.librespot-discovery]
37+
path = "discovery"
38+
version = "0.5.0-dev"
39+
40+
[dependencies.librespot-metadata]
41+
path = "metadata"
42+
version = "0.5.0-dev"
43+
44+
[dependencies.librespot-playback]
45+
path = "playback"
46+
version = "0.5.0-dev"
47+
48+
[dependencies.librespot-protocol]
49+
path = "protocol"
50+
version = "0.5.0-dev"
51+
52+
[dependencies.librespot-oauth]
53+
path = "oauth"
54+
version = "0.5.0-dev"
55+
56+
[dependencies]
57+
data-encoding = "2.5"
58+
env_logger = { version = "0.11.2", default-features = false, features = ["color", "humantime", "auto-color"] }
59+
futures-util = { version = "0.3", default-features = false }
60+
getopts = "0.2"
61+
log = "0.4"
62+
sha1 = "0.10"
63+
sysinfo = { version = "0.31.3", default-features = false, features = ["system"] }
64+
thiserror = "1.0"
65+
tokio = { version = "1", features = ["rt", "macros", "signal", "sync", "parking_lot", "process"] }
66+
url = "2.2"
67+
68+
[features]
69+
alsa-backend = ["librespot-playback/alsa-backend"]
70+
portaudio-backend = ["librespot-playback/portaudio-backend"]
71+
pulseaudio-backend = ["librespot-playback/pulseaudio-backend"]
72+
jackaudio-backend = ["librespot-playback/jackaudio-backend"]
73+
rodio-backend = ["librespot-playback/rodio-backend"]
74+
rodiojack-backend = ["librespot-playback/rodiojack-backend"]
75+
sdl-backend = ["librespot-playback/sdl-backend"]
76+
gstreamer-backend = ["librespot-playback/gstreamer-backend"]
77+
78+
with-dns-sd = ["librespot-core/with-dns-sd", "librespot-discovery/with-dns-sd"]
79+
80+
passthrough-decoder = ["librespot-playback/passthrough-decoder"]
81+
82+
default = ["rodio-backend"]
83+
84+
[package.metadata.deb]
85+
maintainer = "librespot-org"
86+
copyright = "2018 Paul Liétar"
87+
license-file = ["LICENSE", "4"]
88+
depends = "$auto"
89+
extended-description = """\
90+
librespot is an open source client library for Spotify. It enables applications \
91+
to use Spotify's service, without using the official but closed-source \
92+
libspotify. Additionally, it will provide extra features which are not \
93+
available in the official library."""
94+
section = "sound"
95+
priority = "optional"
96+
assets = [
97+
["target/release/librespot", "usr/bin/", "755"],
98+
["contrib/librespot.service", "lib/systemd/system/", "644"],
99+
["contrib/librespot.user.service", "lib/systemd/user/", "644"]
100+
]

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-dev"
3+
version = "0.5.0"
44
rust-version = "1.74"
55
authors = ["Paul Lietar <paul@lietar.net>"]
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-dev"
13+
version = "0.5.0"
1414

1515
[dependencies]
1616
aes = "0.8"

audio/Cargo.toml-e

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
[package]
2+
name = "librespot-audio"
3+
version = "0.5.0-dev"
4+
rust-version = "1.74"
5+
authors = ["Paul Lietar <paul@lietar.net>"]
6+
description = "The audio fetching logic for librespot"
7+
license = "MIT"
8+
repository = "https://github.com/librespot-org/librespot"
9+
edition = "2021"
10+
11+
[dependencies.librespot-core]
12+
path = "../core"
13+
version = "0.5.0-dev"
14+
15+
[dependencies]
16+
aes = "0.8"
17+
bytes = "1"
18+
ctr = "0.9"
19+
futures-util = "0.3"
20+
hyper = { version = "1.3", features = [] }
21+
hyper-util = { version = "0.1", features = ["client"] }
22+
http-body-util = "0.1.1"
23+
log = "0.4"
24+
parking_lot = { version = "0.12", features = ["deadlock_detection"] }
25+
tempfile = "3"
26+
thiserror = "1.0"
27+
tokio = { version = "1", features = ["macros", "parking_lot", "sync"] }

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-dev"
3+
version = "0.5.0"
44
rust-version = "1.74"
55
authors = ["Paul Lietar <paul@lietar.net>"]
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-dev"
25+
version = "0.5.0"
2626

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

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

connect/Cargo.toml-e

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
[package]
2+
name = "librespot-connect"
3+
version = "0.5.0-dev"
4+
rust-version = "1.74"
5+
authors = ["Paul Lietar <paul@lietar.net>"]
6+
description = "The discovery and Spotify Connect logic for librespot"
7+
license = "MIT"
8+
repository = "https://github.com/librespot-org/librespot"
9+
edition = "2021"
10+
11+
[dependencies]
12+
form_urlencoded = "1.0"
13+
futures-util = "0.3"
14+
log = "0.4"
15+
protobuf = "3.5"
16+
rand = "0.8"
17+
serde = { version = "1.0", features = ["derive"] }
18+
serde_json = "1.0"
19+
thiserror = "1.0"
20+
tokio = { version = "1", features = ["macros", "parking_lot", "sync"] }
21+
tokio-stream = "0.1"
22+
23+
[dependencies.librespot-core]
24+
path = "../core"
25+
version = "0.5.0-dev"
26+
27+
[dependencies.librespot-playback]
28+
path = "../playback"
29+
version = "0.5.0-dev"
30+
31+
[dependencies.librespot-protocol]
32+
path = "../protocol"
33+
version = "0.5.0-dev"

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-dev"
3+
version = "0.5.0"
44
rust-version = "1.74"
55
authors = ["Paul Lietar <paul@lietar.net>"]
66
build = "build.rs"
@@ -11,11 +11,11 @@ edition = "2021"
1111

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

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

2020
[dependencies]
2121
aes = "0.8"

core/Cargo.toml-e

Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
[package]
2+
name = "librespot-core"
3+
version = "0.5.0-dev"
4+
rust-version = "1.74"
5+
authors = ["Paul Lietar <paul@lietar.net>"]
6+
build = "build.rs"
7+
description = "The core functionality provided by librespot"
8+
license = "MIT"
9+
repository = "https://github.com/librespot-org/librespot"
10+
edition = "2021"
11+
12+
[dependencies.librespot-oauth]
13+
path = "../oauth"
14+
version = "0.5.0-dev"
15+
16+
[dependencies.librespot-protocol]
17+
path = "../protocol"
18+
version = "0.5.0-dev"
19+
20+
[dependencies]
21+
aes = "0.8"
22+
base64 = "0.22"
23+
byteorder = "1.4"
24+
bytes = "1"
25+
dns-sd = { version = "0.1", optional = true }
26+
form_urlencoded = "1.0"
27+
futures-core = "0.3"
28+
futures-util = { version = "0.3", features = ["alloc", "bilock", "sink", "unstable"] }
29+
governor = { version = "0.6", default-features = false, features = ["std", "jitter"] }
30+
hmac = "0.12"
31+
httparse = "1.7"
32+
http = "1.0"
33+
hyper = { version = "1.3", features = ["http1", "http2"] }
34+
hyper-util = { version = "0.1", features = ["client"] }
35+
http-body-util = "0.1.1"
36+
hyper-proxy2 = { version = "0.1", default-features = false, features = ["rustls"] }
37+
hyper-rustls = { version = "0.27.2", features = ["http2"] }
38+
log = "0.4"
39+
nonzero_ext = "0.3"
40+
num-bigint = { version = "0.4", features = ["rand"] }
41+
num-derive = "0.4"
42+
num-integer = "0.1"
43+
num-traits = "0.2"
44+
once_cell = "1"
45+
parking_lot = { version = "0.12", features = ["deadlock_detection"] }
46+
pbkdf2 = { version = "0.12", default-features = false, features = ["hmac"] }
47+
pin-project-lite = "0.2"
48+
priority-queue = "2.0"
49+
protobuf = "3.5"
50+
quick-xml = { version = "0.36.1", features = ["serialize"] }
51+
rand = "0.8"
52+
rsa = "0.9.2"
53+
serde = { version = "1.0", features = ["derive"] }
54+
serde_json = "1.0"
55+
sha1 = { version = "0.10", features = ["oid"] }
56+
shannon = "0.2"
57+
sysinfo = { version = "0.31.3", default-features = false, features = ["system"] }
58+
thiserror = "1.0"
59+
time = { version = "0.3", features = ["formatting", "parsing"] }
60+
tokio = { version = "1", features = ["io-util", "macros", "net", "parking_lot", "rt", "sync", "time"] }
61+
tokio-stream = "0.1"
62+
tokio-tungstenite = { version = "*", default-features = false, features = ["rustls-tls-native-roots"] }
63+
tokio-util = { version = "0.7", features = ["codec"] }
64+
url = "2"
65+
uuid = { version = "1", default-features = false, features = ["fast-rng", "v4"] }
66+
data-encoding = "2.5"
67+
68+
[build-dependencies]
69+
rand = "0.8"
70+
vergen-gitcl = { version = "1.0.0", default-features = false, features = ["build"] }
71+
72+
[dev-dependencies]
73+
tokio = { version = "1", features = ["macros", "parking_lot"] }
74+
75+
[features]
76+
with-dns-sd = ["dns-sd"]

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-dev"
3+
version = "0.5.0"
44
rust-version = "1.74"
55
authors = ["Paul Lietar <paul@lietar.net>"]
66
description = "The discovery logic for librespot"
@@ -31,7 +31,7 @@ tokio = { version = "1", features = ["parking_lot", "sync", "rt"] }
3131

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

3636
[dev-dependencies]
3737
futures = "0.3"

0 commit comments

Comments
 (0)