Update MSRV to 1.60

This commit is contained in:
Roderick van Domburg 2022-07-28 19:06:38 +02:00
parent 4ec38ca193
commit 6b11fb5cee
No known key found for this signature in database
GPG key ID: 87F5FDE8A56219F4
2 changed files with 8 additions and 12 deletions

View file

@ -55,7 +55,7 @@ jobs:
matrix: matrix:
os: [ubuntu-latest] os: [ubuntu-latest]
toolchain: toolchain:
- 1.56 # MSRV (Minimum supported rust version) - "1.60" # MSRV (Minimum supported rust version)
- stable - stable
experimental: [false] experimental: [false]
# Ignore failures in beta # Ignore failures in beta
@ -113,7 +113,7 @@ jobs:
matrix: matrix:
os: [windows-latest] os: [windows-latest]
toolchain: toolchain:
- 1.56 # MSRV (Minimum supported rust version) - "1.60" # MSRV (Minimum supported rust version)
- stable - stable
steps: steps:
- name: Checkout code - name: Checkout code
@ -160,7 +160,7 @@ jobs:
os: [ubuntu-latest] os: [ubuntu-latest]
target: [armv7-unknown-linux-gnueabihf] target: [armv7-unknown-linux-gnueabihf]
toolchain: toolchain:
- 1.56 # MSRV (Minimum supported rust version) - "1.60" # MSRV (Minimum supported rust version)
- stable - stable
steps: steps:
- name: Checkout code - name: Checkout code

View file

@ -7,11 +7,7 @@ In order to compile librespot, you will first need to set up a suitable Rust bui
### Install Rust ### Install Rust
The easiest, and recommended way to get Rust is to use [rustup](https://rustup.rs). Once thats installed, Rust's standard tools should be set up and ready to use. The easiest, and recommended way to get Rust is to use [rustup](https://rustup.rs). Once thats installed, Rust's standard tools should be set up and ready to use.
<<<<<<< HEAD *Note: The current minimum supported Rust version at the time of writing is 1.60.*
*Note: The current minimum required Rust version at the time of writing is 1.56.*
=======
*Note: The current minimum required Rust version at the time of writing is 1.56, you can find the current minimum version specified in the `.github/workflow/test.yml` file.*
>>>>>>> dev
#### Additional Rust tools - `rustfmt` #### Additional Rust tools - `rustfmt`
To ensure a consistent codebase, we utilise [`rustfmt`](https://github.com/rust-lang/rustfmt) and [`clippy`](https://github.com/rust-lang/rust-clippy), which are installed by default with `rustup` these days, else they can be installed manually with: To ensure a consistent codebase, we utilise [`rustfmt`](https://github.com/rust-lang/rustfmt) and [`clippy`](https://github.com/rust-lang/rust-clippy), which are installed by default with `rustup` these days, else they can be installed manually with:
@ -22,8 +18,8 @@ rustup component add clippy
Using `cargo fmt` and `cargo clippy` is not optional, as our CI checks against this repo's rules. Using `cargo fmt` and `cargo clippy` is not optional, as our CI checks against this repo's rules.
### General dependencies ### General dependencies
Along with Rust, you will also require a C compiler. Along with Rust, you will also require a C compiler.
On Debian/Ubuntu, install with: On Debian/Ubuntu, install with:
```shell ```shell
sudo apt-get install build-essential sudo apt-get install build-essential
@ -31,10 +27,10 @@ sudo apt-get install build-essential
``` ```
On Fedora systems, install with: On Fedora systems, install with:
```shell ```shell
sudo dnf install gcc sudo dnf install gcc
``` ```
### Audio library dependencies ### Audio library dependencies
Depending on the chosen backend, specific development libraries are required. Depending on the chosen backend, specific development libraries are required.
*_Note this is an non-exhaustive list, open a PR to add to it!_* *_Note this is an non-exhaustive list, open a PR to add to it!_*