Skip to content

Commit

Permalink
Use Rust 1.63.0
Browse files Browse the repository at this point in the history
  • Loading branch information
helgoboss committed Sep 14, 2022
1 parent 88889e4 commit ec26847
Show file tree
Hide file tree
Showing 9 changed files with 16 additions and 16 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/linux-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.61.0
toolchain: 1.63.0
target: aarch64-unknown-linux-gnu
override: true
- run: rustup component add rustfmt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-armv7.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.61.0
toolchain: 1.63.0
target: armv7-unknown-linux-gnueabihf
override: true
- run: rustup component add rustfmt
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/linux-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.61.0
toolchain: 1.63.0
override: true
- run: rustup component add rustfmt
- name: cargo check
Expand All @@ -49,7 +49,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.61.0
toolchain: 1.63.0
override: true
- run: rustup component add rustfmt
- name: cargo build
Expand All @@ -72,7 +72,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.61.0
toolchain: 1.63.0
override: true
- run: rustup component add rustfmt
- name: cargo fmt
Expand All @@ -95,7 +95,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.61.0
toolchain: 1.63.0
override: true
- run: rustup component add rustfmt
- run: rustup component add clippy
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/macos-aarch64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.61.0
toolchain: 1.63.0
target: aarch64-apple-darwin
override: true
- run: rustup component add rustfmt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/macos-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.61.0
toolchain: 1.63.0
override: true
- run: rustup component add rustfmt
- name: cargo check
Expand All @@ -45,7 +45,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.61.0
toolchain: 1.63.0
override: true
- run: rustup component add rustfmt
- name: cargo build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.61.0-${{ matrix.toolchain-suffix }}
toolchain: 1.63.0-${{ matrix.toolchain-suffix }}
target: ${{ matrix.target }}
override: true
- run: rustup component add rustfmt
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/windows-i686.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.61.0-i686-pc-windows-msvc
toolchain: 1.63.0-i686-pc-windows-msvc
target: i686-pc-windows-msvc
override: true
- run: rustup component add rustfmt
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows-x86_64.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.61.0
toolchain: 1.63.0
override: true
- run: rustup component add rustfmt
- name: cargo check
Expand All @@ -41,7 +41,7 @@ jobs:
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.61.0
toolchain: 1.63.0
override: true
- run: rustup component add rustfmt
- name: cargo build
Expand Down
6 changes: 3 additions & 3 deletions CONTRIBUTING.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ architecture (REAPER 32-bit vs. 64-bit) are marked with :star:.
* Set the correct toolchain default :star:

`batch
rustup default 1.61.0-x86_64-pc-windows-msvc
rustup default 1.63.0-x86_64-pc-windows-msvc
`

. Download and install https://git-scm.com/download/win[Git for Windows]
Expand Down Expand Up @@ -95,7 +95,7 @@ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh # choose 1 (defau
source $HOME/.cargo/env
# Set the correct toolchain default
rustup default 1.61.0-x86_64-unknown-linux-gnu
rustup default 1.63.0-x86_64-unknown-linux-gnu
# Clone ReaLearn repository (the "--recurse-submodules" is important!)
git clone --recurse-submodules https://github.com/helgoboss/realearn.git
Expand Down Expand Up @@ -129,7 +129,7 @@ should provide you with the necessary instructions if something is missing.
# Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh # choose 1 (default)
source $HOME/.cargo/env
rustup default 1.61.0-x86_64-apple-darwin
rustup default 1.63.0-x86_64-apple-darwin
# Clone ReaLearn
cd Downloads
Expand Down

0 comments on commit ec26847

Please sign in to comment.