Skip to content

Commit d53458a

Browse files
committed
chore: bump version to 0.7.0 and update internal dependencies
1 parent ef3dca6 commit d53458a

File tree

9 files changed

+23
-23
lines changed

9 files changed

+23
-23
lines changed

Cargo.lock

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ include = [
2828
]
2929

3030
[workspace.package]
31-
version = "0.6.0-dev"
31+
version = "0.7.0"
3232
rust-version = "1.85"
3333
authors = ["Librespot Org"]
3434
license = "MIT"

audio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ rustls-tls-native-roots = ["librespot-core/rustls-tls-native-roots"]
1818
rustls-tls-webpki-roots = ["librespot-core/rustls-tls-webpki-roots"]
1919

2020
[dependencies]
21-
librespot-core.workspace = true
21+
librespot-core = { version = "0.7.0", path = "../core", default-features = false }
2222

2323
aes = "0.8"
2424
bytes = "1"

connect/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ rustls-tls-native-roots = ["librespot-core/rustls-tls-native-roots"]
1818
rustls-tls-webpki-roots = ["librespot-core/rustls-tls-webpki-roots"]
1919

2020
[dependencies]
21-
librespot-core.workspace = true
22-
librespot-playback.workspace = true
23-
librespot-protocol.workspace = true
21+
librespot-core = { version = "0.7.0", path = "../core", default-features = false }
22+
librespot-playback = { version = "0.7.0", path = "../playback", default-features = false }
23+
librespot-protocol = { version = "0.7.0", path = "../protocol", default-features = false }
2424

2525
futures-util = "0.3"
2626
log = "0.4"

core/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,8 @@ rustls-tls-webpki-roots = [
4040
__rustls = []
4141

4242
[dependencies]
43-
librespot-oauth.workspace = true
44-
librespot-protocol.workspace = true
43+
librespot-oauth = { version = "0.7.0", path = "../oauth", default-features = false }
44+
librespot-protocol = { version = "0.7.0", path = "../protocol", default-features = false }
4545

4646
aes = "0.8"
4747
base64 = "0.22"

discovery/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ rustls-tls-native-roots = ["librespot-core/rustls-tls-native-roots"]
2323
rustls-tls-webpki-roots = ["librespot-core/rustls-tls-webpki-roots"]
2424

2525
[dependencies]
26-
librespot-core.workspace = true
26+
librespot-core = { version = "0.7.0", path = "../core", default-features = false }
2727

2828
aes = "0.8"
2929
base64 = "0.22"

metadata/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ rustls-tls-native-roots = ["librespot-core/rustls-tls-native-roots"]
1818
rustls-tls-webpki-roots = ["librespot-core/rustls-tls-webpki-roots"]
1919

2020
[dependencies]
21-
librespot-core.workspace = true
22-
librespot-protocol.workspace = true
21+
librespot-core = { version = "0.7.0", path = "../core", default-features = false }
22+
librespot-protocol = { version = "0.7.0", path = "../protocol", default-features = false }
2323

2424
async-trait = "0.1"
2525
bytes = "1"

playback/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,9 +47,9 @@ rustls-tls-webpki-roots = [
4747
]
4848

4949
[dependencies]
50-
librespot-audio.workspace = true
51-
librespot-core.workspace = true
52-
librespot-metadata.workspace = true
50+
librespot-audio = { version = "0.7.0", path = "../audio", default-features = false }
51+
librespot-core = { version = "0.7.0", path = "../core", default-features = false }
52+
librespot-metadata = { version = "0.7.0", path = "../metadata", default-features = false }
5353

5454
portable-atomic = "1"
5555
futures-util = "0.3"

protocol/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ edition.workspace = true
1010
build = "build.rs"
1111

1212
[dependencies]
13-
protobuf = "3.7"
13+
protobuf = "3"
1414

1515
[build-dependencies]
1616
protobuf-codegen = "3"

0 commit comments

Comments
 (0)