Skip to content

Commit 037d311

Browse files
committed
bump MSRV to 1.75
required by zbus >= 4
1 parent f1f8331 commit 037d311

File tree

13 files changed

+16
-16
lines changed

13 files changed

+16
-16
lines changed

.devcontainer/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# syntax=docker/dockerfile:1
22
ARG debian_version=slim-bookworm
3-
ARG rust_version=1.74.0
3+
ARG rust_version=1.75.0
44
FROM rust:${rust_version}-${debian_version}
55

66
ARG DEBIAN_FRONTEND=noninteractive

.github/workflows/test.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ jobs:
109109
matrix:
110110
os: [ubuntu-latest]
111111
toolchain:
112-
- "1.74" # MSRV (Minimum supported rust version)
112+
- "1.75" # MSRV (Minimum supported rust version)
113113
- stable
114114
experimental: [false]
115115
# Ignore failures in beta
@@ -164,7 +164,7 @@ jobs:
164164
matrix:
165165
os: [windows-latest]
166166
toolchain:
167-
- "1.74" # MSRV (Minimum supported rust version)
167+
- "1.75" # MSRV (Minimum supported rust version)
168168
- stable
169169
steps:
170170
- name: Checkout code
@@ -215,7 +215,7 @@ jobs:
215215
- aarch64-unknown-linux-gnu
216216
- riscv64gc-unknown-linux-gnu
217217
toolchain:
218-
- "1.74" # MSRV (Minimum supported rust version)
218+
- "1.75" # MSRV (Minimum supported rust version)
219219
- stable
220220
steps:
221221
- name: Checkout code

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ https://github.com/librespot-org/librespot
4141
configurations.
4242
- [audio] Files are now downloaded over the HTTPS CDN (breaking)
4343
- [audio] Improve file opening and seeking performance (breaking)
44-
- [core] MSRV is now 1.74 (breaking)
44+
- [core] MSRV is now 1.75 (breaking)
4545
- [connect] `DeviceType` moved out of `connect` into `core` (breaking)
4646
- [connect] Update and expose all `spirc` context fields (breaking)
4747
- [connect] Add `Clone, Defaut` traits to `spirc` contexts

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "librespot"
33
version = "0.5.0-dev"
4-
rust-version = "1.74"
4+
rust-version = "1.75"
55
authors = ["Librespot Org"]
66
license = "MIT"
77
description = "An open source client library for Spotify, with support for Spotify Connect"

audio/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "librespot-audio"
33
version = "0.5.0-dev"
4-
rust-version = "1.74"
4+
rust-version = "1.75"
55
authors = ["Paul Lietar <[email protected]>"]
66
description = "The audio fetching logic for librespot"
77
license = "MIT"

connect/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "librespot-connect"
33
version = "0.5.0-dev"
4-
rust-version = "1.74"
4+
rust-version = "1.75"
55
authors = ["Paul Lietar <[email protected]>"]
66
description = "The discovery and Spotify Connect logic for librespot"
77
license = "MIT"

contrib/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ RUN apt-get install -y curl git build-essential crossbuild-essential-arm64 cross
2929
RUN apt-get install -y libasound2-dev libasound2-dev:arm64 libasound2-dev:armel libasound2-dev:armhf
3030
RUN apt-get install -y libpulse0 libpulse0:arm64 libpulse0:armel libpulse0:armhf
3131

32-
RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.74 -y
32+
RUN curl https://sh.rustup.rs -sSf | sh -s -- --default-toolchain 1.75 -y
3333
ENV PATH="/root/.cargo/bin/:${PATH}"
3434
RUN rustup target add aarch64-unknown-linux-gnu
3535
RUN rustup target add arm-unknown-linux-gnueabi

core/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "librespot-core"
33
version = "0.5.0-dev"
4-
rust-version = "1.74"
4+
rust-version = "1.75"
55
authors = ["Paul Lietar <[email protected]>"]
66
build = "build.rs"
77
description = "The core functionality provided by librespot"

discovery/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "librespot-discovery"
33
version = "0.5.0-dev"
4-
rust-version = "1.74"
4+
rust-version = "1.75"
55
authors = ["Paul Lietar <[email protected]>"]
66
description = "The discovery logic for librespot"
77
license = "MIT"

metadata/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "librespot-metadata"
33
version = "0.5.0-dev"
4-
rust-version = "1.74"
4+
rust-version = "1.75"
55
authors = ["Paul Lietar <[email protected]>"]
66
description = "The metadata logic for librespot"
77
license = "MIT"

oauth/Cargo.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "librespot-oauth"
33
version = "0.5.0-dev"
4-
rust-version = "1.73"
4+
rust-version = "1.75"
55
authors = ["Nick Steel <[email protected]>"]
66
description = "OAuth authorization code flow with PKCE for obtaining a Spotify access token"
77
license = "MIT"
@@ -15,4 +15,4 @@ thiserror = "1.0"
1515
url = "2.2"
1616

1717
[dev-dependencies]
18-
env_logger = { version = "0.11.2", default-features = false, features = ["color", "humantime", "auto-color"] }
18+
env_logger = { version = "0.11.2", default-features = false, features = ["color", "humantime", "auto-color"] }

playback/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "librespot-playback"
33
version = "0.5.0-dev"
4-
rust-version = "1.74"
4+
rust-version = "1.75"
55
authors = ["Sasha Hilton <[email protected]>"]
66
description = "The audio playback logic for librespot"
77
license = "MIT"

protocol/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "librespot-protocol"
33
version = "0.5.0-dev"
4-
rust-version = "1.74"
4+
rust-version = "1.75"
55
authors = ["Paul Liétar <[email protected]>"]
66
build = "build.rs"
77
description = "The protobuf logic for communicating with Spotify servers"

0 commit comments

Comments
 (0)