Skip to content

Commit 2633212

Browse files
authored
Merge pull request #259 from kcl-lang/chore-bump-rust-1.91
chore: bump rust toolchain version to 1.91
2 parents f38f06a + 20f3720 commit 2633212

File tree

31 files changed

+168
-36549
lines changed

31 files changed

+168
-36549
lines changed

.devcontainer/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ RUN yum -y install git
99

1010
RUN yum -y install python3
1111

12-
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.88.0
12+
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --default-toolchain 1.91.0
1313

1414
ENV PATH="/root/.cargo/bin:${PATH}"
1515

.github/workflows/c-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Install Rust
3737
uses: actions-rs/toolchain@v1
3838
with:
39-
toolchain: 1.88
39+
toolchain: 1.91
4040
override: true
4141
components: clippy, rustfmt
4242
- name: Build

.github/workflows/cpp-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Install Rust
4242
uses: actions-rs/toolchain@v1
4343
with:
44-
toolchain: 1.88
44+
toolchain: 1.91
4545
override: true
4646
components: clippy, rustfmt
4747
- name: Build

.github/workflows/dotnet-test.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
- name: Install Rust
7070
uses: actions-rs/toolchain@v1
7171
with:
72-
toolchain: 1.88
72+
toolchain: 1.91
7373
override: true
7474
components: clippy, rustfmt
7575
- name: Setup linux-aarch_64 rust target
@@ -124,7 +124,7 @@ jobs:
124124
- name: Install Rust
125125
uses: actions-rs/toolchain@v1
126126
with:
127-
toolchain: 1.88
127+
toolchain: 1.91
128128
override: true
129129
components: clippy, rustfmt
130130

.github/workflows/java-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
- name: Install rust nightly toolchain
6161
uses: actions-rs/toolchain@v1
6262
with:
63-
toolchain: 1.88
63+
toolchain: 1.91
6464
override: true
6565
components: clippy, rustfmt
6666

.github/workflows/kotlin-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
- name: Install rust nightly toolchain
6161
uses: actions-rs/toolchain@v1
6262
with:
63-
toolchain: 1.88
63+
toolchain: 1.91
6464
override: true
6565
components: clippy, rustfmt
6666

.github/workflows/lua-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Install Rust
3838
uses: actions-rs/toolchain@v1
3939
with:
40-
toolchain: 1.88
40+
toolchain: 1.91
4141
override: true
4242
components: clippy, rustfmt
4343
- name: Build

.github/workflows/nodejs-test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install rust toolchain
3333
uses: actions-rs/toolchain@v1
3434
with:
35-
toolchain: 1.88
35+
toolchain: 1.91
3636
override: true
3737
components: clippy, rustfmt
3838

@@ -73,8 +73,8 @@ jobs:
7373
-w /build/nodejs \
7474
ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian \
7575
bash -c "corepack prepare pnpm@9.15.4 --activate &&
76-
rustup update 1.88 &&
77-
rustup default 1.88 &&
76+
rustup update 1.91 &&
77+
rustup default 1.91 &&
7878
cargo --version &&
7979
cargo clean &&
8080
cargo update &&
@@ -90,8 +90,8 @@ jobs:
9090
-w /build/nodejs \
9191
ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian-aarch64 \
9292
bash -c "set -e &&
93-
rustup update 1.88 &&
94-
rustup default 1.88 &&
93+
rustup update 1.91 &&
94+
rustup default 1.91 &&
9595
rustup target add aarch64-unknown-linux-gnu &&
9696
corepack prepare pnpm@9.15.4 --activate &&
9797
cargo --version &&

.github/workflows/rust-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- name: Install rust nightly toolchain
3232
uses: actions-rs/toolchain@v1
3333
with:
34-
toolchain: 1.88
34+
toolchain: 1.91
3535
override: true
3636
components: clippy, rustfmt
3737
- name: Rust code test

.github/workflows/swift-test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ jobs:
4343
- name: Install Rust
4444
uses: actions-rs/toolchain@v1
4545
with:
46-
toolchain: 1.88
46+
toolchain: 1.91
4747
override: true
4848
components: clippy, rustfmt
4949
- name: Setup Swift toolchain

0 commit comments

Comments
 (0)