Skip to content

Commit 848478d

Browse files
authored
chore: bump rust toolchain to 1.76 and bump dep package versions to fix security issues (#1107)
Signed-off-by: peefy <[email protected]>
1 parent ee99380 commit 848478d

File tree

14 files changed

+175
-80
lines changed

14 files changed

+175
-80
lines changed

.github/workflows/build-test-linux-arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install rust nightly toolchain
3333
uses: actions-rs/toolchain@v1
3434
with:
35-
toolchain: 1.75
35+
toolchain: 1.76
3636
override: true
3737
components: clippy, rustfmt
3838

.github/workflows/build-test-macos-arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
- name: Install rust nightly toolchain
3333
uses: actions-rs/toolchain@v1
3434
with:
35-
toolchain: 1.75
35+
toolchain: 1.76
3636
override: true
3737
components: clippy, rustfmt
3838
- name: Grammar test

.github/workflows/daily-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Install rust nightly toolchain
3131
uses: actions-rs/toolchain@v1
3232
with:
33-
toolchain: 1.75
33+
toolchain: 1.76
3434
override: true
3535
components: clippy, rustfmt
3636

@@ -64,7 +64,7 @@ jobs:
6464
- name: Install Rust Toolchain
6565
uses: actions-rs/toolchain@v1
6666
with:
67-
toolchain: 1.75
67+
toolchain: 1.76
6868
override: true
6969
components: clippy, rustfmt
7070

.github/workflows/macos_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- name: Install rust nightly toolchain
4040
uses: actions-rs/toolchain@v1
4141
with:
42-
toolchain: 1.75
42+
toolchain: 1.76
4343
override: true
4444
components: clippy, rustfmt
4545
- name: Code format check

.github/workflows/test_compiler_base.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- name: Install rust nightly toolchain
2323
uses: actions-rs/toolchain@v1
2424
with:
25-
toolchain: 1.75
25+
toolchain: 1.76
2626
override: true
2727
components: clippy, rustfmt
2828
- name: Rust code format check
@@ -43,7 +43,7 @@ jobs:
4343
- name: Install rust nightly toolchain
4444
uses: actions-rs/toolchain@v1
4545
with:
46-
toolchain: 1.75
46+
toolchain: 1.76
4747
override: true
4848
components: clippy, rustfmt
4949
- name: Compiler_base rust unit test

.github/workflows/ubuntu_test.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install rust nightly toolchain
2929
uses: actions-rs/toolchain@v1
3030
with:
31-
toolchain: 1.75
31+
toolchain: 1.76
3232
override: true
3333
components: clippy, rustfmt
3434
- name: Code format check

docs/dev_guide/1.about_this_guide.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# About this Guide
22

3-
This guide is intended to help document how `KCL` (the KCL compiler) works, and to help new contributors get involved in KCLVM development.
3+
This guide is intended to help document how `KCL` (the KCL compiler) works, and to help new contributors get involved in KCL development.
44

55
This guide consists of **4** parts:
66

docs/dev_guide/2.quick_start.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Using a docker image is our recommended way, of course, you can also configure y
4242
#### macOS and OS X
4343

4444
- `git`
45-
- `Rust 1.60+`
45+
- `Rust 1.76+`
4646
- `LLVM 12`
4747
- `Python 3.7+` (Only for integration tests).
4848

@@ -62,7 +62,7 @@ export PATH=<your LLVM 12 install location>/bin:$PATH
6262
#### Linux
6363

6464
- `git`
65-
- `Rust 1.60+`
65+
- `Rust 1.76+`
6666
- `Python3 Building Dependencies`
6767
- `LLVM 12`
6868

@@ -105,7 +105,7 @@ ln -sf /usr/bin/wasm-ld-12 /usr/bin/wasm-ld
105105
#### Windows
106106

107107
- `git`
108-
- `Rust 1.60+`
108+
- `Rust 1.76+`
109109
- `LLVM 12`
110110
- `Python 3.7+` (Only for integration tests).
111111

0 commit comments

Comments
 (0)