Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN yum -y install git

RUN yum -y install python3

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

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

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/c-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.88
toolchain: 1.91
override: true
components: clippy, rustfmt
- name: Build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cpp-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.88
toolchain: 1.91
override: true
components: clippy, rustfmt
- name: Build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dotnet-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.88
toolchain: 1.91
override: true
components: clippy, rustfmt
- name: Setup linux-aarch_64 rust target
Expand Down Expand Up @@ -124,7 +124,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.88
toolchain: 1.91
override: true
components: clippy, rustfmt

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/java-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Install rust nightly toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.88
toolchain: 1.91
override: true
components: clippy, rustfmt

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/kotlin-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Install rust nightly toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.88
toolchain: 1.91
override: true
components: clippy, rustfmt

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lua-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.88
toolchain: 1.91
override: true
components: clippy, rustfmt
- name: Build
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/nodejs-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Install rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.88
toolchain: 1.91
override: true
components: clippy, rustfmt

Expand Down Expand Up @@ -73,8 +73,8 @@ jobs:
-w /build/nodejs \
ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian \
bash -c "corepack prepare pnpm@9.15.4 --activate &&
rustup update 1.88 &&
rustup default 1.88 &&
rustup update 1.91 &&
rustup default 1.91 &&
cargo --version &&
cargo clean &&
cargo update &&
Expand All @@ -90,8 +90,8 @@ jobs:
-w /build/nodejs \
ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-debian-aarch64 \
bash -c "set -e &&
rustup update 1.88 &&
rustup default 1.88 &&
rustup update 1.91 &&
rustup default 1.91 &&
rustup target add aarch64-unknown-linux-gnu &&
corepack prepare pnpm@9.15.4 --activate &&
cargo --version &&
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/rust-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Install rust nightly toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: 1.88
toolchain: 1.91
override: true
components: clippy, rustfmt
- name: Rust code test
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/swift-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.88
toolchain: 1.91
override: true
components: clippy, rustfmt
- name: Setup Swift toolchain
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/wasm-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
- name: Setup Rust
uses: actions-rs/toolchain@v1
with:
toolchain: 1.88
toolchain: 1.91
override: true
components: clippy, rustfmt
- name: Setup Go
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ _a.out_*.*
**/.vscode
__pycache__
build
Cargo.lock
Loading
Loading