mirror of
https://github.com/librespot-org/librespot.git
synced 2024-11-08 16:45:43 +00:00
Update MSRV to 1.60
This commit is contained in:
parent
4ec38ca193
commit
6b11fb5cee
2 changed files with 8 additions and 12 deletions
6
.github/workflows/test.yml
vendored
6
.github/workflows/test.yml
vendored
|
@ -55,7 +55,7 @@ jobs:
|
|||
matrix:
|
||||
os: [ubuntu-latest]
|
||||
toolchain:
|
||||
- 1.56 # MSRV (Minimum supported rust version)
|
||||
- "1.60" # MSRV (Minimum supported rust version)
|
||||
- stable
|
||||
experimental: [false]
|
||||
# Ignore failures in beta
|
||||
|
@ -113,7 +113,7 @@ jobs:
|
|||
matrix:
|
||||
os: [windows-latest]
|
||||
toolchain:
|
||||
- 1.56 # MSRV (Minimum supported rust version)
|
||||
- "1.60" # MSRV (Minimum supported rust version)
|
||||
- stable
|
||||
steps:
|
||||
- name: Checkout code
|
||||
|
@ -160,7 +160,7 @@ jobs:
|
|||
os: [ubuntu-latest]
|
||||
target: [armv7-unknown-linux-gnueabihf]
|
||||
toolchain:
|
||||
- 1.56 # MSRV (Minimum supported rust version)
|
||||
- "1.60" # MSRV (Minimum supported rust version)
|
||||
- stable
|
||||
steps:
|
||||
- name: Checkout code
|
||||
|
|
14
COMPILING.md
14
COMPILING.md
|
@ -7,11 +7,7 @@ In order to compile librespot, you will first need to set up a suitable Rust bui
|
|||
### Install Rust
|
||||
The easiest, and recommended way to get Rust is to use [rustup](https://rustup.rs). Once that’s installed, Rust's standard tools should be set up and ready to use.
|
||||
|
||||
<<<<<<< HEAD
|
||||
*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
|
||||
*Note: The current minimum supported Rust version at the time of writing is 1.60.*
|
||||
|
||||
#### 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:
|
||||
|
@ -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.
|
||||
|
||||
### 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:
|
||||
```shell
|
||||
sudo apt-get install build-essential
|
||||
|
@ -31,10 +27,10 @@ sudo apt-get install build-essential
|
|||
```
|
||||
On Fedora systems, install with:
|
||||
```shell
|
||||
sudo dnf install gcc
|
||||
sudo dnf install gcc
|
||||
```
|
||||
### 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!_*
|
||||
|
||||
|
|
Loading…
Reference in a new issue