Skip to content

Commit f2b770e

Browse files
committed
fix: npm run serve fails after rust update, locked rust to 1.85.1
1 parent 8c73b03 commit f2b770e

10 files changed

+33
-0
lines changed

.github/workflows/desktop-linux-test-pull.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
node-version: 20
2020
- name: install Rust stable
2121
uses: dtolnay/rust-toolchain@stable
22+
with:
23+
toolchain: 1.85.1
2224

2325
- name: install dependencies (ubuntu only)
2426
run: |

.github/workflows/desktop-mac-m1-test-pull.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ jobs:
2121
node-version: 20
2222
- name: install Rust stable
2323
uses: dtolnay/rust-toolchain@stable
24+
with:
25+
toolchain: 1.85.1
2426

2527
- name: npm install ci deps
2628
env:

.github/workflows/desktop-mac-test-pull.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
node-version: 20
2020
- name: install Rust stable
2121
uses: dtolnay/rust-toolchain@stable
22+
with:
23+
toolchain: 1.85.1
2224

2325
- name: npm install ci deps
2426
env:

.github/workflows/desktop-windows-test-pull.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@ jobs:
1919
node-version: 20
2020
- name: install Rust stable
2121
uses: dtolnay/rust-toolchain@stable
22+
with:
23+
toolchain: 1.85.1
2224

2325
- name: npm install ci deps
2426
env:

.github/workflows/prod-desktop-tests-on-pull.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
node-version: 20
1818
- name: install Rust stable
1919
uses: dtolnay/rust-toolchain@stable
20+
with:
21+
toolchain: 1.85.1
2022

2123
- name: install dependencies (ubuntu only)
2224
run: |
@@ -92,6 +94,8 @@ jobs:
9294
node-version: 20
9395
- name: install Rust stable
9496
uses: dtolnay/rust-toolchain@stable
97+
with:
98+
toolchain: 1.85.1
9599

96100
- name: npm install ci deps
97101
env:
@@ -162,6 +166,8 @@ jobs:
162166
node-version: 20
163167
- name: install Rust stable
164168
uses: dtolnay/rust-toolchain@stable
169+
with:
170+
toolchain: 1.85.1
165171

166172
- name: npm install ci deps
167173
env:

.github/workflows/staging-desktop-tests-on-pull.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ jobs:
1717
node-version: 20
1818
- name: install Rust stable
1919
uses: dtolnay/rust-toolchain@stable
20+
with:
21+
toolchain: 1.85.1
2022

2123
- name: install dependencies (ubuntu only)
2224
run: |
@@ -87,6 +89,8 @@ jobs:
8789
node-version: 20
8890
- name: install Rust stable
8991
uses: dtolnay/rust-toolchain@stable
92+
with:
93+
toolchain: 1.85.1
9094

9195
- name: npm install ci deps
9296
env:
@@ -148,6 +152,8 @@ jobs:
148152
node-version: 20
149153
- name: install Rust stable
150154
uses: dtolnay/rust-toolchain@stable
155+
with:
156+
toolchain: 1.85.1
151157

152158
- name: npm install ci deps
153159
env:

.github/workflows/tauri-build-dev.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ jobs:
100100

101101
- name: install Rust stable
102102
uses: dtolnay/rust-toolchain@stable
103+
with:
104+
toolchain: 1.85.1
103105
- name: install frontend dependencies
104106
env:
105107
GH_TOKEN: ${{ github.token }}
@@ -288,6 +290,8 @@ jobs:
288290
ldd --version
289291
- name: install Rust stable
290292
uses: dtolnay/rust-toolchain@stable
293+
with:
294+
toolchain: 1.85.1
291295
- name: install dependencies (ubuntu only)
292296
run: |
293297
sudo apt-get update

.github/workflows/tauri-build-prod.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ jobs:
100100

101101
- name: install Rust stable
102102
uses: dtolnay/rust-toolchain@stable
103+
with:
104+
toolchain: 1.85.1
103105
- name: install frontend dependencies
104106
env:
105107
GH_TOKEN: ${{ github.token }}
@@ -332,6 +334,8 @@ jobs:
332334
ldd --version
333335
- name: install Rust stable
334336
uses: dtolnay/rust-toolchain@stable
337+
with:
338+
toolchain: 1.85.1
335339
- name: install dependencies (ubuntu only)
336340
run: |
337341
sudo apt-get update

.github/workflows/tauri-build-staging.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,8 @@ jobs:
100100

101101
- name: install Rust stable
102102
uses: dtolnay/rust-toolchain@stable
103+
with:
104+
toolchain: 1.85.1
103105
- name: install frontend dependencies
104106
run: |
105107
npm ci
@@ -285,6 +287,8 @@ jobs:
285287
ldd --version
286288
- name: install Rust stable
287289
uses: dtolnay/rust-toolchain@stable
290+
with:
291+
toolchain: 1.85.1
288292
- name: install dependencies (ubuntu only)
289293
run: |
290294
sudo apt-get update

src-tauri/rust-toolchain

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
1.85.1

0 commit comments

Comments
 (0)