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
4 changes: 2 additions & 2 deletions .github/workflows/cargo-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.86.0
toolchain: 1.87.0
components: rustfmt, clippy
target: wasm32-unknown-unknown
target: wasm32v1-none
override: true
default: true

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cargo-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.86.0
toolchain: 1.87.0
components: rustfmt, clippy
target: wasm32-unknown-unknown
target: wasm32v1-none
override: true
default: true

Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/cargo-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
profile: minimal
toolchain: nightly-2023-05-22
components: rustfmt, clippy
target: wasm32-unknown-unknown
target: wasm32v1-none
override: true
default: true

Expand Down Expand Up @@ -73,9 +73,9 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.86.0
toolchain: 1.87.0
components: rustfmt, clippy
target: wasm32-unknown-unknown
target: wasm32v1-none
override: true
default: true

Expand Down Expand Up @@ -116,9 +116,9 @@ jobs:
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: 1.86.0
toolchain: 1.87.0
components: rustfmt, clippy
target: wasm32-unknown-unknown
target: wasm32v1-none
override: true
default: true

Expand Down
4 changes: 0 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,6 @@ rustup update
Once done, finish installing the support software and configure your default toolchain:

```bash
# Install nightly toolchain and use it
rustup toolchain install nightly-2022-10-18
rustup default nightly-2022-10-18
rustup target add --toolchain nightly-2022-10-18 wasm32-unknown-unknown

# Additional OS dependencies
sudo apt install build-essential
Expand Down
4 changes: 2 additions & 2 deletions rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[toolchain]
channel = "1.86.0"
channel = "1.87.0"
components = [
"cargo",
"clippy",
Expand All @@ -9,5 +9,5 @@ components = [
"rustc",
"rustfmt",
]
targets = [ "wasm32-unknown-unknown" ]
targets = [ "wasm32v1-none" ]
profile = "minimal"
Loading