Skip to content

Commit a2533b2

Browse files
committed
Upgrade to Rust 1.81.0
1 parent c57ddb1 commit a2533b2

File tree

15 files changed

+26
-30
lines changed

15 files changed

+26
-30
lines changed

.github/workflows/linux-aarch64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- uses: actions-rs/toolchain@v1
3636
with:
3737
profile: minimal
38-
toolchain: 1.79.0
38+
toolchain: 1.81.0
3939
target: aarch64-unknown-linux-gnu
4040
override: true
4141
- name: cargo test (for generating dialogs with php)

.github/workflows/linux-armv7.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- uses: actions-rs/toolchain@v1
3636
with:
3737
profile: minimal
38-
toolchain: 1.79.0
38+
toolchain: 1.81.0
3939
target: armv7-unknown-linux-gnueabihf
4040
override: true
4141
- name: cargo test (for generating dialogs with php)

.github/workflows/linux-x86_64.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
- uses: actions-rs/toolchain@v1
3636
with:
3737
profile: minimal
38-
toolchain: 1.79.0
38+
toolchain: 1.81.0
3939
override: true
4040
- name: cargo check
4141
uses: actions-rs/cargo@v1
@@ -64,7 +64,7 @@ jobs:
6464
- uses: actions-rs/toolchain@v1
6565
with:
6666
profile: minimal
67-
toolchain: 1.79.0
67+
toolchain: 1.81.0
6868
override: true
6969
- name: cargo build
7070
uses: actions-rs/cargo@v1
@@ -96,7 +96,7 @@ jobs:
9696
- uses: actions-rs/toolchain@v1
9797
with:
9898
profile: minimal
99-
toolchain: 1.79.0
99+
toolchain: 1.81.0
100100
override: true
101101
- run: rustup component add rustfmt
102102
- name: cargo fmt
@@ -127,7 +127,7 @@ jobs:
127127
- uses: actions-rs/toolchain@v1
128128
with:
129129
profile: minimal
130-
toolchain: 1.79.0
130+
toolchain: 1.81.0
131131
override: true
132132
- run: rustup component add clippy
133133
- name: cargo clippy

.github/workflows/macos-aarch64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions-rs/toolchain@v1
3333
with:
3434
profile: minimal
35-
toolchain: 1.79.0
35+
toolchain: 1.81.0
3636
target: aarch64-apple-darwin
3737
override: true
3838
- name: Set SDKROOT

.github/workflows/macos-x86_64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- uses: actions-rs/toolchain@v1
3333
with:
3434
profile: minimal
35-
toolchain: 1.79.0
35+
toolchain: 1.81.0
3636
override: true
3737
- name: cargo check
3838
uses: actions-rs/cargo@v1
@@ -62,7 +62,7 @@ jobs:
6262
- uses: actions-rs/toolchain@v1
6363
with:
6464
profile: minimal
65-
toolchain: 1.79.0
65+
toolchain: 1.81.0
6666
override: true
6767
- name: cargo build
6868
uses: actions-rs/cargo@v1

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
uses: actions-rs/toolchain@v1
100100
with:
101101
profile: minimal
102-
toolchain: 1.79.0-${{ matrix.toolchain-suffix }}
102+
toolchain: 1.81.0-${{ matrix.toolchain-suffix }}
103103
target: ${{ matrix.target }}
104104
override: true
105105
# Install OS dependencies (Linux/macOS only)

.github/workflows/windows-i686.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions-rs/toolchain@v1
3232
with:
3333
profile: minimal
34-
toolchain: 1.79.0-i686-pc-windows-msvc
34+
toolchain: 1.81.0-i686-pc-windows-msvc
3535
target: i686-pc-windows-msvc
3636
override: true
3737
- name: cargo build

.github/workflows/windows-x86_64.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- uses: actions-rs/toolchain@v1
3232
with:
3333
profile: minimal
34-
toolchain: 1.79.0
34+
toolchain: 1.81.0
3535
override: true
3636
- name: cargo check
3737
uses: actions-rs/cargo@v1
@@ -57,7 +57,7 @@ jobs:
5757
- uses: actions-rs/toolchain@v1
5858
with:
5959
profile: minimal
60-
toolchain: 1.79.0
60+
toolchain: 1.81.0
6161
override: true
6262
- name: cargo build
6363
uses: actions-rs/cargo@v1

CONTRIBUTING.adoc

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ On Windows, it's necessary to use the MSVC (Microsoft Visual Studio C++) toolcha
125125
+
126126
[source,shell]
127127
----
128-
rustup default 1.79.0-x86_64-pc-windows-msvc
128+
rustup default 1.81.0-x86_64-pc-windows-msvc
129129
----
130130
. Download and install https://git-scm.com/download/win[Git for Windows]
131131
. Clone the ReaLearn Git repository
@@ -167,7 +167,7 @@ curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh # choose 1 (defau
167167
source $HOME/.cargo/env
168168
169169
# Set the correct toolchain default
170-
rustup default 1.79.0-x86_64-unknown-linux-gnu
170+
rustup default 1.81.0-x86_64-unknown-linux-gnu
171171
172172
# Clone ReaLearn repository
173173
git clone https://github.com/helgoboss/helgobox.git
@@ -211,7 +211,7 @@ The Rust installation script should provide you with the necessary instructions
211211
# Install Rust
212212
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh # choose 1 (default)
213213
source $HOME/.cargo/env
214-
rustup default 1.79.0-x86_64-apple-darwin
214+
rustup default 1.81.0-x86_64-apple-darwin
215215
216216
# Clone ReaLearn
217217
cd Downloads

api/src/persistence/target.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -605,7 +605,7 @@ pub enum MouseAction {
605605
/// Future extension possibilities:
606606
///
607607
/// - Click or double-click a mouse button (press and immediate release, this could be a generic
608-
/// "Glue" option because it could be useful for other on/off targets as well).
608+
/// "Glue" option because it could be useful for other on/off targets as well).
609609
PressOrRelease {
610610
#[serde(skip_serializing_if = "Option::is_none")]
611611
button: Option<MouseButton>,

0 commit comments

Comments
 (0)